我在做一个网页,我想在这个网站上创建一个类似的效果:http: //y2graphic.com/
在这个网页中,您可以看到名为“Chủ đề HOT”(热门内容)的部分,它有 3 张图像,当悬停时会产生效果(我不知道名称)。你能告诉我效果的名称和创建它的方法吗?非常感谢,对不起我的英语不好。
我在做一个网页,我想在这个网站上创建一个类似的效果:http: //y2graphic.com/
在这个网页中,您可以看到名为“Chủ đề HOT”(热门内容)的部分,它有 3 张图像,当悬停时会产生效果(我不知道名称)。你能告诉我效果的名称和创建它的方法吗?非常感谢,对不起我的英语不好。
他们为此使用 CSS3,transform -attribute。
HTML
<a href="#" class="thumb">
<img src="http://y2graphic.com/templates/v2/images/hot/wallpaper.jpg" />
</a>
CSS
.thumb {
display: block;
height: 125px;
overflow: hidden;
position: relative;
width: 150px;
}
.thumb img {
height: 100%;
left: 0;
position: absolute;
top: 0;
transition: transform 0.5s ease 0s;
width: 100%;
z-index: -1;
}
.thumb:hover img {
transform: scale(1.2) rotate(5deg);
}
这是一个演示上述代码的小提琴!
<a href="#">
<img src="http://images.google.com/intl/en_ALL/images/logos/images_logo_lg.gif" />
</a>
a {
width: 150px;
height: 125px;
display: block;
overflow: hidden;
position: relative;
}
a img {
width: 100%;
height: 100%;
-moz-transition: -moz-transform 0.5s ease;
-webkit-transition: -webkit-transform 0.5s ease;
-o-transition: -o-transform 0.5s ease;
transition: transform 0.5s ease;
position: absolute;
z-index: -1;
top: 0;
left: 0;
}
a:hover img {
-moz-transform: scale(1.2) rotate(5deg);
-webkit-transform: scale(1.2) rotate(5deg);
-o-transform: scale(1.2) rotate(5deg);
transform: scale(1.2) rotate(5deg);
}