首页 > 代码库 > jquery的小插件(按钮抖动)——衍生QQ窗口抖动
jquery的小插件(按钮抖动)——衍生QQ窗口抖动
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=http://www.mamicode.com/"抖动" id="btn" />
jquery的小插件(按钮抖动)——衍生QQ窗口抖动
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。