2个回答
2015-05-11
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
<html xmlns="
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>transition</title>
<style>
.con{
width:100px;
height:100px;
background-color: yellow;
border:1px solid black;
transition:width 2s;
-moz-transition:width 2s; /* Firefox 4 */
-webkit-transition:width 2s; /* Safari and Chrome */
-o-transition:width 2s; /* Opera */
}
.con1{
width:100px;
height:100px;
background-color: yellow;
border:1px solid black;
font-size:12px;
transition:width 2s,background 2s,height 2s,font 10s,color 2s;
-moz-transition:width 2s,background 2s,height 2s,font 10s,color 2s; /* Firefox 4 */
-webkit-transition:width 2s,background 2s,height 2s,font 10s,color 2s; /* Safari and Chrome */
-o-transition:width 2s,background 2s,height 2s,font 10s,color 2s; /* Opera */
}
.con:hover{
width:200px;
}
.con1:hover{
width:200px;
height:200px;
font-size:18px;
color:yellow;
background-color: red;
}
</style>
</head>
<body>
<p>这个是单纯的横向拉伸</p>
<div class="con">
</div>
<p>长宽拉伸颜色渐变</p>
<div class="con1">
<p>鼠标移上来看效果!!!</p>
</div>
</body>
</html>
用css3做的,你测试一下看看是不是你要的,然后自己修改一下,要看其他更丰富的特效去w3c上面看看学习。可能有很多低版本的浏览器不支持。。。慎用!
展开全部
用jQuery写
给你的例子
别忘了引入jquery.js
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(function(){
$("#clickme").click(function() {
$("#close").slideToggle(300);//展开速速为300毫秒,数值越大越慢
});
})
</script>
<style type="text/css">
#open{border:1px solid #999; width: 120px;}
#close{ display: none;}
</style>
</head>
<body>
<div id="open">
<input id="clickme" type="button" value="点我展开">
<ul id="close">
<li>1111111</li>
<li>2222222</li>
<li>3333333</li>
<li>4444444</li>
</ul>
</div>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询