js實(shí)現(xiàn)div拖動(dòng)動(dòng)畫(huà)運(yùn)行軌跡效果代碼分享
本文實(shí)例講述了js div拖動(dòng)動(dòng)畫(huà)運(yùn)行軌跡效果。分享給大家供大家參考。具體如下:
這是一款基于js實(shí)現(xiàn)的div拖動(dòng)動(dòng)畫(huà)運(yùn)行軌跡效果源碼,是一款原生js div拖動(dòng)效果制作鼠標(biāo)拖動(dòng)div動(dòng)畫(huà)運(yùn)行軌跡效果代碼??梢赃x擇【記住軌跡】與【不記住軌跡】?jī)煞N拖動(dòng)顯示模式,從而顯示出不同的拖動(dòng)效果。
運(yùn)行效果圖: -------------------查看效果 下載源碼-------------------
小提示:瀏覽器中如果不能正常運(yùn)行,可以嘗試切換瀏覽模式。
為大家分享的js div拖動(dòng)動(dòng)畫(huà)運(yùn)行軌跡效果代碼如下
<!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拖動(dòng)動(dòng)畫(huà)運(yùn)行軌跡效果代碼 - 腳本之家</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; } //前面通常都用一個(gè)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記錄坐標(biāo) 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(){//記錄坐標(biāo)點(diǎn) 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 = {//默認(rèn)值 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>隨意拖動(dòng)那個(gè)小方塊幾秒鐘</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>來(lái)源:<a href="http://www.dbjr.com.cn/" target="_blank">腳本之家</a></p> </div> </body> </html>
以上就是為大家分享的jQuery UI設(shè)置固定日期選擇代碼,希望大家可以喜歡。
相關(guān)文章
js調(diào)試工具 Javascript Debug Toolkit 2.0.0版本發(fā)布
Javascript Debug Toolkit是一個(gè)可以跨瀏覽器調(diào)試javascript的開(kāi)源項(xiàng)目,支持在IE,FIREFOX,SAFARI,CHROME等瀏覽器中調(diào)試javascript。2.0.0版本做了較大變動(dòng),增加以下功能2008-12-12JavaScript寫(xiě)的一個(gè)DIV 彈出網(wǎng)頁(yè)對(duì)話框
自己整理得一個(gè)JavaScript寫(xiě)的一個(gè)DIV 彈出網(wǎng)頁(yè)對(duì)話框2009-08-08JavaScript實(shí)現(xiàn)的一個(gè)計(jì)算數(shù)字步數(shù)的算法分享
這篇文章主要介紹了JavaScript實(shí)現(xiàn)的一個(gè)計(jì)算數(shù)字步數(shù)的算法分享,本文先是講解了算法描述與實(shí)現(xiàn)原理,然后給出實(shí)現(xiàn)代碼,需要的朋友可以參考下2014-12-12js省市區(qū)級(jí)聯(lián)查詢(插件版&無(wú)插件版)
這篇文章主要為大家詳細(xì)介紹了js省市區(qū)級(jí)聯(lián)查詢,包括插件版和無(wú)插件版,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-03-03javascript提取URL的搜索字符串中的參數(shù)(自定義函數(shù)實(shí)現(xiàn))
我們經(jīng)常會(huì)看到有的頁(yè)面鏈接地址后面會(huì)跟有參數(shù),很多時(shí)候我們需要獲得這些參數(shù)的值,接下來(lái)將介紹獲取方法,感興趣的朋友可以了解系,希望本文對(duì)你有所幫助2013-01-01javascript獲取網(wǎng)頁(yè)中指定節(jié)點(diǎn)的父節(jié)點(diǎn)、子節(jié)點(diǎn)的方法小結(jié)
如何獲取要更新的這些元素呢?用JavaScript獲取這些節(jié)點(diǎn)的方法有很多種,下面是總結(jié)的一些方法,感興趣的朋友可以參考下哈2013-04-04JavaScript中用字面量創(chuàng)建對(duì)象介紹
這篇文章主要介紹了JavaScript中用字面量創(chuàng)建對(duì)象介紹,本文直接給出代碼實(shí)例,并講解了一些技巧,需要的朋友可以參考下2014-12-12