1 Star 0 Fork 0

艺儿ya/js

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
7-2-完美运动框架.js 952 Bytes
一键复制 编辑 原始数据 按行查看 历史
艺儿ya 提交于 2020-08-09 13:51 . add file
function getStyle(obj,name)
{
if(obj.currentStyle)
{
return obj.currentStyle[name];
}
else
{
return getComputerStyle(obj,false)[name];
}
};
function startMove(obj,json,fnEnd)
{
clearInterval(obj.timer);
obj.timer=setInterval(move,30);
function move(){
var cur=0;
var stop=true;
for(var attr in json)
{
if(attr=='opacity')
{
cur=Math.round(parseFloat(getStyle(obj,attr))*100);
}
else
{
cur=parseInt(getStyle(obj,attr));
}
var speed=(json[attr]-cur)/6;
speed=speed>0?Math.ceil(speed):Math.floor(speed);
if(json[attr]!=cur)
{
stop=false;//还有东西未到
if(attr=='opacity')
{
obj.style[attr]=(speed+cur)/100; //大多数浏览器
obj.style.filter="alpha:("+[attr]+"="+(speed+cur)+")";
//IE浏览器
}
else
{
obj.style[attr]=cur+speed+'px';
}
}
}
if(stop==true)
{
clearInterval(obj.timer);
if(fnEnd) fnEnd();
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/yi-1290960972/javascript.git
git@gitee.com:yi-1290960972/javascript.git
yi-1290960972
javascript
js
master

搜索帮助