jQuery效果2

Posted greenpark

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery效果2相关的知识,希望对你有一定的参考价值。

<script type="text/javascript">
        //动画jq开始
        /*
         * 定义动画
         * animate({json格式定义css},"time"),可以使用预定义的值show、hide、toggle注意当有margin-left情况填marginLeft形势
         * */
        $(‘.animate‘).click(function () {
            $(‘.animation‘).animate({
                marginLeft: ‘1000px‘,
                marginTop: ‘0px‘,
            }, 3000);
            $(‘.animation‘).animate({
                marginLeft: ‘1000px‘,
                marginTop: ‘0px‘,
                fontSize: ‘50px‘,
            }, 1000);
            $(‘.animation‘).animate({
                height: ‘toggle‘,
            }, 1000);
        });
        /*
         * 停止动画
         * stop(stopAll,goToEnd)stopAll清除动画队列停止,goToEnd立刻完成所有动画队列停止,不设置默认false设置需要加true
         * */
        $(‘.stop‘).click(function () {
                $(‘.animation‘).stop(true, true);
            }
        );
        //停止所有
        $(‘.stopall‘).click(function () {
            $(‘.animation‘).stop(true);
        });
        //立刻完成动画停止
        $(‘.gotoedn‘).click(function () {
            $(‘.animation‘).stop(true, true);
        });
        /*
        * 回调函数callback
        *在动画完成之后才执行的函数
        * */
        $(document).ready(function () {
            $(".button").click(function () {
                $(".p").hide(1000, function () {
                    alert("The paragraph is now hidden");
                });
            });
        });
        /*
        * Chaining方法可以一个事件同时链接多个动作
        * */
        $(‘.chaining‘).click(function () {
            $(‘.p1‘).hide(1000).fadeTo(0.55,1000);
            }
        );
    </script>

以上是关于jQuery效果2的主要内容,如果未能解决你的问题,请参考以下文章

几个非常实用的JQuery代码片段

几条jQuery代码片段助力Web开发效率提升

十条jQuery代码片段助力Web开发效率提升

十条jQuery代码片段助力Web开发效率提升

很实用的JQuery代码片段(转)

26个jQuery代码片段使用技巧