.test1 figcaption p {
background: #fff;
color: #333;
margin: 3px;
text-align: center;
transform: translate(-400px, 0px);
/将文字的位置向左平移400px,将其被overflow:hidden;隐藏。/
figure figcaption p {
transition: all 0.35s;
}
figure figcaption p:nth-of-type(1) {
/nth-of-type(1)是一个伪类 定义同级的兄弟元素第一个意义一个属性/
transition-delay: 0.05s;
}
figure figcaption p:nth-of-type(2) {
/nth-of-type(1)是一个伪类 定义同级的兄弟元素第二个意义一个属性/
transition-delay: 0.1s;
}
figure figcaption p:nth-of-type(3) {
/nth-of-type(1)是一个伪类 定义同级的兄弟元素第三个意义一个属性/
transition-delay: 0.15s;
}
figure figcaption p,h2,span{ transition: all 0.35s}
/ 给这些标签的添加动画效果/
.test1:hover img{
transform: translate(-50px,0px); opacity: 0.5;
}
/添加伪类hover 当鼠标移动到图片上时开始移动图片向左移动50px /