Jquery里的animate方法,用JS怎么写 10
<div></div><script>$("div").animate({"left":"-100px"})</script>以上是用JQanimate将div从右往左移...
<div></div>
<script>
$("div").animate({"left":"-100px"})
</script>
以上是用JQ animate 将div 从右往左移动100px。
如果就用JS来写。要怎么写。 展开
<script>
$("div").animate({"left":"-100px"})
</script>
以上是用JQ animate 将div 从右往左移动100px。
如果就用JS来写。要怎么写。 展开
3个回答
展开全部
可以使用递归
//js的animate方法
//参数:obj当前元素
// arr属性名称
// 目标属性值
// fn方法参数
function run(obj,arr,target,fn){
clearInterval(obj.timer);
obj.timer = setInterval(function(){
var cur = 0;
if(attr == "opacity"){
cur = Math.round(parseFloat(getstyle(obj,attr))*100);
}else{
cur = parseInt(getstyle(obj,attr));
}
var speed = (target-cur)/8;
speed = speed>0?Math.ceil(speed):Math.floor(speed);
if(cur == target){
clearInterval(obj.timer);
if(fn){
fn();
}
}else{
if(attr == "opacity"){
obj.style.filter = "alpha(opacity="+(cur+speed)+")";
obj.style.opacity = (cur+speed)/100;
}else{
obj.style[attr] = cur + speed + "px";
}
}
},30)
}
//获取样式
function getstyle(obj,name){
if(obj.currentStyle){
return obj.currentStyle[name];
}else{
return getComputedStyle(obj,false)[name];
}
}
//调用示例:
run(box,"width",200,function(){run(box,"height",200,null);});
展开全部
js是jquery的父亲
js是一种网页语言
而jquery并不是一种语言,他是一种语言的产物
说白了,就是js封装的类
js是一种网页语言
而jquery并不是一种语言,他是一种语言的产物
说白了,就是js封装的类
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
看jquery代码啊。代码不就是javascript实现的么。。。。
!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询