<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
body{
background:url(images/mm/bg.png);
padding: 0;
margin: 0;
width: 1362px;
height: 5023px;
}
#apDiv1{
position: absolute;
width: 961px;
height: 347px;
z-index: 1;
left: 193px;
top: 1718px;
}
.accordion{
background: #fff;
border: 1px solid #DFDFDF;
box-shadow: 1px 1px 1px #ddd;
border-radius: 2px;
}
.accordion h3 {
margin: 0;
padding: 8px 1em;
font-weight:normal;
background-color: #F5F5F5;
}
.accordion h3 a {
text-decoration: none;
color: #111;
font-size: 18px;
font-family: 'Microsoft Yahei';
}
.accordion h3 + div {
height: 0;
padding: 0;
overflow: hidden;
-webkit-transition: all 0.6s ease-in;
-o-transition: all 0.6s ease-in;
transition: all 0.6s ease-in;
}
/*两个标签一起transition,兄弟选择器*/
.accordion :target h3 + div {
height: 265px;
}
.red {
font-size: 22px;
color: #FE6DA6;
}
</style>
</head>
<body>
<div id="apDiv1">
<div class="accordion">
<div id="one">
<h3><a href="#one">菇凉们喜欢的<span class="red">衣服</span></a></h3>
<div><img src="images/mm/1.png"></div>
</div>
<div id="two">
<h3><a href="#two">菇凉们喜欢的<span class="red">鞋子</span></a></h3>
<div><img src="images/mm/2.png"></div>
</div>
<div id="three">
<h3><a href="#three">菇凉们喜欢的<span class="red">包包</span></a></h3>
<div><img src="images/mm/3.png"></div>
</div>
</div>
</div>
</body>
</html>
target/transition
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 不同target中引用同名文件 在多target项目中可以通过不同文件选择不同target,从而在编译过程中选择包...
- http://blog.csdn.net/qiang12200/article/details/40304885 ...
- Given a sorted array of integers, find the starting and e...