包装设置超时功能围绕简单的幻灯片动画jquery

时间:2016-02-17 23:42:16

标签: javascript jquery css3 animation

我使用jQuery进行简单的向下滑动功能,我只需动画图像即可向下滑动。它很棒。但是我试图在动画运行后重置动画,因此它会在用户会话期间继续循环播放。我尝试了下面的内容,但它并没有按照需要工作,幻灯片动画仍然运行,但没有找到超时和重启的效果。谢谢你的任何想法。

$(window).load(function () {
setTimeout(function(){
        $("#man").show("slide", {
            direction: "up"
        }, 2000);
},500);
});

1 个答案:

答案 0 :(得分:0)

您可以在完成2000毫秒转换后调用函数。

更新了小提琴:http://jsfiddle.net/CqR9E/392/

<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
         xsi:noNamespaceSchemaLocation="ehcache.xsd" updateCheck="true" name="torqueCacheManager">
    <diskStore path="java.io.tmpdir"/>
    <!-- Fail safe default cache-->
    <defaultCache
        maxElementsInMemory="10000"
        eternal="false"
        ...
        memoryStoreEvictionPolicy="LRU">        
    </defaultCache>
    <cache name="ENTITY_L2_CACHE"  
       maxElementsInMemory="10000"
       ...
       diskExpiryThreadIntervalSeconds="120"
       memoryStoreEvictionPolicy="LRU"/>        
</ehcache>