我想基于jquery创建动画,下面是我的代码;
>items=document.querySelectorAll("#customers td span");
[<span alt=" 02,Counter,11,2013-04-06 14:59:16"> 02</span>, <span>11</span>, <span alt=" 02,Counter,11,2013-04-06 13:22:19"> 02</span>, <span>11</span>]
>item=items[0]; // it has a parent tag <tr> i want the whole row to blink (both spans)
<span alt=" 02,Counter,11,2013-04-06 14:59:16"> 02</span>
>tm=item.attributes.getNamedItem("alt");
alt=" 02,Counter,11,2013-04-06 14:59:16"
>dtm=tm.value.split(',')[3];
"2013-04-06 14:59:16"
或在JQuery中:
$(document).ready(function() {
window.setInterval(function(){
$("#customers, td, #span").each(function(){
if($(this).children("span").attr("alt")!=null)
var dt=new Date($(this).children("span").attr("alt").split(",")[3]).getTime();
if(dt>$.now()-10*1000){ //am i right here??
console.log("animating");
$(this).parent().fadeOut("slow");
$(this).parent().fadeIn("slow");
}
});
},1000);
});
每一秒我想检查项目中的每个元素;如果dtm>当前时间 - 10秒,然后它应该在500毫秒后隐藏,并应在500毫秒后显示。
上面的代码我只会闪烁一个跨度,我希望两个元素都闪烁..这个检查应该每1秒继续。
任何人都可以帮助我..
谢谢..
答案 0 :(得分:0)
以下是我的最终代码;
<script>
$(document).ready(function ($) {
window.setInterval(function(){
$("#customers, td, span").each(function(){
if($(this).children("span").attr("alt")!=null){
var dt=new Date($(this).children("span").attr("alt").split(",")[3].replace(/-/g,"/")).getTime();
if(dt>$.now()-20*1000){
console.log("animating");
$(this).parent().fadeOut(500,"linear");
$(this).parent().fadeIn(500,"linear");
}
}
});
},1100);
});
</script>