麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 編程 > JavaScript > 正文

js實現div拖動動畫運行軌跡效果代碼分享

2019-11-20 11:40:46
字體:
來源:轉載
供稿:網友

本文實例講述了js div拖動動畫運行軌跡效果。分享給大家供大家參考。具體如下:
這是一款基于js實現的div拖動動畫運行軌跡效果源碼,是一款原生js div拖動效果制作鼠標拖動div動畫運行軌跡效果代碼。可以選擇【記住軌跡】與【不記住軌跡】兩種拖動顯示模式,從而顯示出不同的拖動效果。
運行效果圖:                                        -------------------查看效果 下載源碼-------------------

小提示:瀏覽器中如果不能正常運行,可以嘗試切換瀏覽模式。
為大家分享的js div拖動動畫運行軌跡效果代碼如下

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>js div拖動動畫運行軌跡效果代碼 - 武林網</title><style type="text/css">*{margin:0px;padding:0px;}#div1{position:relative;left:200px;top:200px;width:100px; height:100px; background-color:#f60;cursor:move;}</style><script type="text/javascript">var isIE = (document.all)?true:false;var $ID = function(id){ return "string"==typeof id?document.getElementById(id):id;}var Class = { create:function(){ return function(){  this.initilize.apply(this,arguments); } }}var Extend = function(destination, source){ for(var property in source){ destination[property] = source[property]; }}var Bind = function(object,fun){ var args = Array.prototype.slice.call(arguments).slice(2); return function(){ return fun.apply(object,args); }}var BindAsEventListener = function(object,fun){ var args = Array.prototype.slice.call(arguments).slice(2); return function(event){ return fun.apply(object,[event||window.event].concat(args)); }}function addEventHandler(oTarget, sEventType, fnHandler) { if (oTarget.addEventListener) { oTarget.addEventListener(sEventType, fnHandler, false); } else if (oTarget.attachEvent) { oTarget.attachEvent("on" + sEventType, fnHandler); } else { oTarget["on" + sEventType] = fnHandler; }};function removeEventHandler(oTarget, sEventType, fnHandler) { if (oTarget.removeEventListener) { oTarget.removeEventListener(sEventType, fnHandler, false); } else if (oTarget.detachEvent) { oTarget.detachEvent("on" + sEventType, fnHandler); } else {  oTarget["on" + sEventType] = null; }};function getNodePosition(node,type){//type="left"or"top" var nodeTemp = node; var l = 0; var t = 0; while(nodeTemp!=document.body&&nodeTemp!=null){ l += nodeTemp.offsetLeft; t += nodeTemp.offsetTop; nodeTemp = nodeTemp.offsetParent; } if(type.toLowerCase()=="left") return l; else return t;}//前面通常都用一個base.js封裝</script><script type="text/javascript">var MyDrag = Class.create();MyDrag.prototype = { initilize:function(obj){ this.Obj = $ID(obj); this._x = this._y = 0; this._xx = this._yy = 0;//Move記錄坐標 this.Obj.style.position = "absolute"; this._pos = []; this._ifSavePos = true; this._t = null; this._speed = 10; this._indexMove = 0;//全局的MoveIndex this._fnStart = BindAsEventListener(this,this.Start);  this._fnMove = BindAsEventListener(this,this.Move); this._fnStop = Bind(this,this.Stop); addEventHandler(this.Obj,"mousedown",this._fnStart); }, Start:function(oEvent){ if(!this._ifSavePos) this._pos = []; this.Drag = this.Obj.cloneNode(true); if(isIE) this.Drag.style.filter = "alpha(opacity=50)"; else this.Drag.style.opacity = "0.5"; this.Obj.parentNode.appendChild(this.Drag); this._left1 = this._xx = getNodePosition(this.Obj,"left"); this._top1 = this._yy = getNodePosition(this.Obj,"top"); this._x = oEvent.clientX - this.Obj.offsetLeft; this._y = oEvent.clientY - this.Obj.offsetTop; addEventHandler(document,"mousemove",this._fnMove); addEventHandler(document,"mouseup",this._fnStop); this._t = setInterval(Bind(this,this.SavePos),10); }, SavePos:function(){//記錄坐標點 this._pos.push(this._xx + "_" + this._yy); }, Move:function(oEvent){ if(isIE) oEvent.returnValue = false; this._xx = oEvent.clientX - this._x; this._yy = oEvent.clientY - this._y; this.Drag.style.left = this._xx + "px"; this.Drag.style.top = this._yy + "px"; }, Stop:function(){ removeEventHandler(document,"mousemove",this._fnMove); removeEventHandler(document,"mouseup",this._fnStop); this.Obj.parentNode.removeChild(this.Drag); this.Obj.style.left = this._xx + "px"; this.Obj.style.top = this._yy + "px"; clearInterval(this._t); this._fnCloneMove = Bind(this,this.CloneMove); this._t = setTimeout(this._fnCloneMove,50); }, CloneMove:function(){ if(this._indexMove<6){  new ObjMove({x1:this._left1,y1:this._top1,x2:this._xx,y2:this._yy,pos:this._pos});  this._indexMove++;  this._t = setTimeout(this._fnCloneMove,50); }else{  clearTimeout(this._t);  this._indexMove = 0; } }}var ObjMove = Class.create(); ObjMove.prototype = { initilize:function(options){ this.SetOptions(options); this.Obj = document.createElement("DIV"); this.Obj.style.cssText = "position:absolute;left:"+ this.options.x1 +"px;top:"+ this.options.y1 +"px;width:100px;height:100px;background-color:#f60;fliter:alpha(opacity=100);opacity:1;"; document.body.appendChild(this.Obj); this.Move2(); }, SetOptions: function(options) { this.options = {//默認值  x1:   0,  y1: 0,  x2: 0,  y2: 0,  pos: [] }; Extend(this.options, options || {}); }, Move2:function(){ this._indexMove = 0; this._fnMovePos = Bind(this,this.MovePos); this._t = setInterval(this._fnMovePos,10); }, MovePos:function(){ if(this._indexMove>=this.options.pos.length){  this.options.pos = [];  document.body.removeChild(this.Obj);  clearInterval(this._t); }else{  this.Obj.style.left = this.options.pos[this._indexMove].split("_")[0] + "px";  this.Obj.style.top = this.options.pos[this._indexMove].split("_")[1] + "px"; } this._indexMove++; }}onload = function(){ var myDrag = new MyDrag("div1"); $ID("rad1").onclick = function(){ myDrag._ifSavePos = true; } $ID("rad2").onclick = function(){ myDrag._ifSavePos = false; }}</script></head><body><center><br><div>隨意拖動那個小方塊幾秒鐘</div><br><label for="rad1"><input type="radio" id="rad1" name="rad" checked="checked"/>記住軌跡</label><label for="rad2"><input type="radio" id="rad2" name="rad"/>不記住軌跡</label><div id="div1"></div></center><div style="text-align:center;margin:50px 0; font:normal 14px/24px 'MicroSoft YaHei';"><p>適用瀏覽器:IE8、360、FireFox、Chrome、Safari、Opera、傲游、搜狗、世界之窗. </p><p>來源:<a href="http://www.companysz.com/" target="_blank">武林網</a></p></div></body></html>


以上就是為大家分享的jQuery UI設置固定日期選擇代碼,希望大家可以喜歡。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: www.mitao| 亚洲免费视频一区二区 | 久久九九热re6这里有精品 | 成人一级黄色大片 | 午夜色片 | 日韩每日更新 | 久久新网址| 污污的视频在线观看 | 国产美女视频一区二区三区 | 日韩中文字幕三区 | 草妞视频 | 女人解衣喂奶电影 | 久久草在线观看视频 | 超碰人人做人人爱 | 成年免费视频黄网站在线观看 | 欧美成人午夜 | 成人免费福利视频 | 天天夜夜操操 | 久久精品中文字幕一区 | 欧美日韩在线免费观看 | 在线2区 | 黄色毛片视频在线观看 | 中国洗澡偷拍在线播放 | 手机国产乱子伦精品视频 | 国产免费观看a大片的网站 欧美成人一级 | 国产成人在线综合 | xxxx69hd一hd | 日韩黄色免费电影 | 欧美一级片免费在线观看 | www.91pron| 成人午夜视频网站 | 成年免费大片黄在线观看岛国 | 国产精品亚洲欧美一级在线 | 黄色片网站免费 | 亚洲国产精品久久久久 | 九九热免费视频在线观看 | 九九热在线观看视频 | 超级av在线| 午夜视频亚洲 | 在线成人免费网站 | 精品国产一区二区三区久久久蜜 |