jQuery晃动层特效 有人做过这个吗

发布于 2022-09-11 00:49:43 字数 4484 浏览 10 评论 0

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>jQuery晃动层</title>
  6. <style type="text/css">
  7. body { font: 12px Georgia, serif; }
  8. a { text-decoration: none; }
  9. #header{margin:50px auto}
  10. #header p{text-align:center;font-size:16px;font-weight:bold}
  11. #box{width:400px;height:200px;background-color:#ccc;text-align:center}
  12. #footer{text-align:center;font-size:14px;position:absolute;bottom:50px}
  13. </style>
  14. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js"></script>
  15. <script type="text/javascript">
  16. var box_left = 0;
  17. $(document).ready(function () {
  18.                 box_left = ($(window).width() - $('#box').width()) / 2;
  19.                 $('#box,#footer').css({'left': box_left, 'position':'absolute'});
  20. });
  21. function shock()
  22. {               
  23.         for (i = 1; i < 7; i++)
  24.         {
  25.                 $('#box').animate({
  26.                         'left': '-=15'
  27.                 }, 3, function() {
  28.                     $(this).animate({
  29.                                 'left': '+=30'
  30.                         }, 3, function() {
  31.                                 $(this).animate({
  32.                                         'left': '-=15'
  33.                                 }, 3, function() {
  34.                                         $(this).animate({
  35.                                                 'left': box_left
  36.                                         }, 3, function() {
  37.                                                 // shock end
  38.                                         });
  39.                                 });
  40.                         });
  41.                 });
  42.         }
  43. }
  44. </script>
  45. </head>
  46. <body>
  47. <div id="header">
  48. <p>仿wp后台登录错误时左右晃动某一层</p>
  49. </div>
  50. <div id="box"><a href="#" onclick="shock();return false;">单击我查看效果</a></div>
  51. <div id="footer">
  52. Copyright © 2010 <a href="http://xiaosong.org">快乐忆站 </a>All Rights Reserved | Powered by <a href="http://xiaosong.org"> 小松</a>
  53. </div>
  54. </body>
  55. </html>

复制代码

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文