为jquery ui添加缓动效果

时间:2017-03-16 21:48:48

标签: jquery jquery-ui

从这个脚本开始:

<script type="text/javascript">
    $( document ).ready(function() {
        $('h1').hide();
        $('img').hide();
        console.log( "document loaded" );
    });
 $( window ).on( "load", function() {
        $("h1").slideDown(3500);
        $('img').each(function(){$(this).show('blind',5000)


        console.log( "window loaded" );
    });
    });

</script>

如何在show函数中添加缓动效果?

这些是我的代码中的cdn:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.0/jquery-ui.min.js" integrity="sha256-eGE6blurk5sHj+rmkfsGYeKyZx3M4bG+ZlFyA7Kns7E=" crossorigin="anonymous"></script>

由于

1 个答案:

答案 0 :(得分:1)

好吧我解决了,之前的代码只选择了所有图片,现在我将它们全部包装在divs框中并选择div代替,最终效果效果更好