码迷,mamicode.com
首页 > Web开发 > 详细

jquery的小插件(按钮抖动)——衍生QQ窗口抖动

时间:2014-10-15 16:38:51      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   java   for   

1、抖动的按钮

效果预览:http://runjs.cn/detail/tyx8dbag

<script type="text/javascript">
    //shakenum:抖动的次数,shakeDistance:抖动的距离
    jQuery.fn.Shake = function (shakenum , shakeDistance) {
        this.each(function () {
            var jSelf = $(this);
            jSelf.css({ position: relative });
            for (var x = 1; x <= shakenum; x++) {
                jSelf.animate({ left: (-shakeDistance) },50)
                .animate({ left: shakeDistance }, 50)
                .animate({ left: 0 }, 50);
            }
        });
        return this;
    }
</script>

<script type="text/javascript">
$(function () {
    $(#btn).click(function () {
        $(this).Shake(2, 10, 400);
    });
});
</script>
<input type="button" value="抖动" id="btn" />

 

jquery的小插件(按钮抖动)——衍生QQ窗口抖动

标签:style   blog   http   color   io   os   ar   java   for   

原文地址:http://www.cnblogs.com/wanliyuan/p/4026407.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!