<!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>
XHTMT|
HTML5|
CSS|
HTML DOM|
jQuery|
JSON|
AJAX|
LESS|
HTML|
Bootstrap|
Foundation|
AngularJS|
Ember.js|
TypeScript|
AngularJS2|
React|
jQuery UI|
jQuery EasyUI|
Node.js|
Highcharts|
Echarts|
Vue.js|
CoffeeScript|
Ext.js|
Meteor|
SASS|
Omi|
Markdown|
前端开发规范|
浏览器|
webpack|
JavaScript|
CSS3|
用户登录
还没有账号?立即注册
用户注册
投稿取消
| 文章分类: |
|
还能输入300字
上传中....
丶InMyHeart