基本信息
源码名称:整行从右侧滑出效果源码(js效果 )
源码大小:1.09KB
文件格式:.zip
开发语言:js
更新时间:2015-07-21
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍

js动态效果


Init:function(){
$(".Item span").css("width",$(".ListView").width()/4 "px");
for(var i=0;i<$(".Item").length;i ){
var target=$(".Item")[i];
$(target).animate({marginLeft:"0px"},300 i*100);
}
},
Update:function(){
$(".ListView .c .Item").remove();
for(var i=0;i<10;i ){
var newItem=$("<div class=\"Item\"> <span>test</span> <span>男/" i "</span> <span>四川省,成都市,锦江区</span> <span>详细说明</span> </div>");
$(newItem).find("span").css("width",$(".ListView").width()/4 "px");
$(".ListView .c").append(newItem);
$(newItem).animate({marginLeft:"0px"},300 i*100);
}
}