Css动画小DEMO
Posted zb471623510
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Css动画小DEMO相关的知识,希望对你有一定的参考价值。
div{
position:absolute; //使DIV块脱离文档流
transition:left 1s linear,top 1s linear; }
var target=document.getElementById("div"); target.style.left="0px"; target.style.top="0px"; document.onmousedown = function(evt){ //鼠标按下事件 target.style.left= evt.pageX+"px"; target.style.top= evt.pageY+"px"; }
以上是关于Css动画小DEMO的主要内容,如果未能解决你的问题,请参考以下文章