HTML——jQuery—动画特效之隐藏和显示案例
程序员文章站
2022-07-13 21:48:12
...
- 案例
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style> *{ margin: 0; padding: 0; } .box{ width: 300px; height: 300px; background-color: red; } button{ width: 100px; height: 50px; margin: 10px; } </style> //下载js文件 <script src="../js/jquery-3.4.1.min.js" type="text/javascript" charset="utf-8"> </script> </head> <body> <div class="box"></div> <div> <button>隐藏</button> <button>显示</button> <button>隐藏与显示</button> </div> <script> /** * 隐藏 * hide(动作完成需要的时间(毫秒), 动作完成后执行的函数) * 显示 * show(动作完成需要的时间(毫秒), 动作完成后执行的函数) */ $("button").eq(0).click(function(){ // 隐藏标签 //$(".box").hide() //$(".box").hide(3000) $(".box").hide(3000, function(){ console.log("隐藏完成") }) }) $("button").eq(1).click(function(){ // 显示标签 $(".box").show(3000) }) $("button").eq(2).click(function(){ // $(".box").toggle(3000) }) </script> </body> </html>
推荐阅读
-
jquery显示和隐藏div特效实例
-
jquery之超简单的div显示和隐藏特效demo(分享)
-
HTML——jQuery—动画特效之隐藏和显示案例
-
jQuery 常用特效实例小结【显示与隐藏、淡入淡出、滑动、动画等】
-
使用jQuery timelinr和animate.css创建超酷的CSS动画时间轴特效_html/css_WEB-ITnose
-
jQuery实现广告显示和隐藏动画
-
jquery之超简单的div显示和隐藏特效demo(分享)_jquery
-
【JavaWeb】JQuery实现广告显示和隐藏动画效果
-
Jquery中使用show()与hide()方法动画显示和隐藏图片_jquery
-
jquery显示和隐藏div特效实例_jquery