Home » Thu thuat
CSS3 hiệu ứng đổi hình ảnh đẹp cho Web, blogspot
Thứ Năm, 6 tháng 6, 2013
Với thủ thuật thêm 1 đoạn code CSS3 sẽ làm cho hình ảnh và trang Web, blog của bạn thêm sống động hơn.
bài viết này mình giới thiệu về đoạn code CSS3 thay đổi hình ảnh khá đẹp mắt khi rê chuột vào.
Demo: http://360anhdep.blogspot.com/p/a.html
Code:
- Dán code đó vào vị trí các bạn cần thêm nhé/
Tags:
Thu thuat
bài viết này mình giới thiệu về đoạn code CSS3 thay đổi hình ảnh khá đẹp mắt khi rê chuột vào.
Demo: http://360anhdep.blogspot.com/p/a.html
Code:
<style type="text/css">
a.nowandthen{
position:relative;
display: block;
overflow:hidden;
cursor: pointer;
width: 650px;
height: 434px;
}
a.nowandthen img{
position:absolute;
left:0;
top:0;
width: 100%;
height: 100%;
-moz-transition: all 0.4s ease;
-webkit-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
-ms-transition: all 0.4s ease;
transition: all 0.4s ease;
z-index: 2;
clip: rect(0,650px,434px,0);
}
a.nowandthen img:nth-of-type(2){
z-index: 1;
}
a.nowandthen:hover img:nth-of-type(1){
clip: rect(0,0,434px,0);
opacity: 0;
}
</style>
<a class="nowandthen" href="http://itviet360.com">
<img alt="" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgMtBka2e4co90NoFM_QfY1XKGYXkutbMLuhJLy5DcIVMgPD8XuBSiiJqMJpEwDLbPm8WLIrOUWpsaJj8InDJ88do4fSd0J9GrDzM2jYRS-Tbr1BTf7Mtct6N0lpAHhpWwUKVvdsTgXudE/s1600/sunset-sunrise-btrix+(1).jpg" />
<img alt="" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiLEU7nenIZVGCX-ZFHKzlMLDgQJf_mal_QtZxWp3aki4MbhUEQWHu0OWqRKymbnabxRmDtHBepiP86_9t2UBiD1G5hhLDYyE2R3BFPwaDvJytQLDZdi9prx7vHUj5xCRT4i7LORJ71fc4/s1600/sunset-sunrise-btrix+(2).jpg" />
</a>
- Dán code đó vào vị trí các bạn cần thêm nhé/
Comments[ 0 ]
Đăng nhận xét