当前位置:   article > 正文

20-(JQuery动画)淡入淡出_jq infinite(20

jq infinite(20
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Document</title>
  6. <style>
  7. div{
  8. width: 300px;
  9. height: 300px;
  10. background:orange;
  11. display: none;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <input type="button" value="显示">
  17. <input type="button" value="隐藏">
  18. <input type="button" value="切换">
  19. <div></div>
  20. <!-- 1.需要引入外部的jQuery文件 -->
  21. <script type="text/javascript" src="../jquery-3.2.1.js"></script>
  22. <script type="text/javascript">
  23. $(function () {
  24. $("input").eq(0).click(function () {
  25. // fadeIn(null/speed,easing,callback)/fadeOut()
  26. $("div").fadeIn("slow",function () {
  27. console.log(1111)
  28. })
  29. })
  30. $("input").eq(1).click(function () {
  31. $("div").fadeOut("slow",function () {
  32. console.log(2222)
  33. })
  34. })
  35. $("input").eq(2).click(function () {
  36. $("div").fadeToggle("slow",function () {
  37. console.log(3333)
  38. })
  39. })
  40. })
  41. </script>
  42. </body>
  43. </html>

上述运行结果:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/660356
推荐阅读
相关标签
  

闽ICP备14008679号