HTML 练习滑动
程序员文章站
2022-06-19 21:47:24
``` Title 显示 隐藏 toggle hello world ``` ......
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>title</title> <script src="jquery-3.3.1.min.js"></script> <style> #flipshow, #content, #fliphide, #toggle{ padding: 5px; text-align: center; background-color: blueviolet; border: solid 1px; red; } #content{ padding: 50px; display: none; } </style> </head> <body> <div id="flipshow">显示</div> <div id="fliphide">隐藏</div> <div id="toggle">toggle</div> <div id="content">hello world</div> </body> <script> $("#flipshow").click(function(){ $("#content").slidedown(1000); }) $("#fliphide").click(function(){ $("#content").slideup(1000); }) $("#toggle").click(function(){ $("#content").slidetoggle(1000); }) </script> </html>
上一篇: python实现K近邻回归,采用等权重和不等权重的方法
下一篇: 网爆胖鸟电影站长因盗版侵权被罚数万
推荐阅读
-
使用swipe方法模拟屏幕滑动与手势密码绘制
-
分享几道和「滑动窗口」有关的算法面试题
-
Python HTML解析模块HTMLParser用法分析【爬虫工具】
-
Python HTML解析器BeautifulSoup用法实例详解【爬虫解析器】
-
java文件名判断练习
-
android实现切换日期左右无限滑动效果
-
样式加载不出来,浏览器控制台报错:Resource interpreted as Stylesheet but transferred with MIME type text/html
-
c#中过滤html的正则表达式
-
Android开发实现高仿优酷的客户端图片左右滑动切换功能实例【附源码下载】
-
Android实现点击WebView界面中图片滑动浏览与保存图片功能