0

我想基于 jquery 创建动画,下面是我的代码;

>items=document.querySelectorAll("#customers td span");
[<span alt=​"  02,Counter,11,2013-04-06 14:​59:​16">​  02​&lt;/span>​, <span>​11​&lt;/span>​, <span alt=​"  02,Counter,11,2013-04-06 13:​22:​19">​  02​&lt;/span>​, <span>​11​&lt;/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​&lt;/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 秒继续一次。

谁能帮我..

谢谢..

4

1 回答 1

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>
于 2013-04-08T10:20:14.343 回答