Sahra ForumSahraSiteSahibi
Mesaj Sayısı : 428 Tecrübe : 1091 Rep Puanı : 29 Kayıt Tarihi : 07/07/11 Yaş : 32 Nerden : Bilmem Lakap : gececi
| Konu: sosyal paylaşım buton kodları Paz 24 Tem. - 22:09:37 | |
| [Linkleri görebilmek için üye olun veya giriş yapın.]css - Kod:
-
<style type="text/css">
.bubblewrap{ list-style-type:none; margin:0; padding:0; }
.bubblewrap li{ display:inline; width: 65px; height:60px; }
.bubblewrap li img{ width: 55px; /* width of each image.*/ height: 60px; /* height of each image.*/ border:0; margin-right: 12px; /*spacing between each image*/ -webkit-transition:-webkit-transform 0.1s ease-in; /*animate transform property */ -o-transition:-o-transform 0.1s ease-in; /*animate transform property in Opera */ }
.bubblewrap li img:hover{ -moz-transform:scale(1.8); /*scale up image 1.8x*/ -webkit-transform:scale(1.8); -o-transform:scale(1.8); }
</style>
html - Kod:
-
<ul class="bubblewrap"> <li><a href="#"><img src="media/stumbleupon.png" title="Add to Stumbleupon" /></a></li> <li><a href="http://dynamicdrive.com"><img src="media/facebook.png" title="Add to Facebook" /></a></li> <li><a href="http://dynamicdrive.com"><img src="media/digg.png" title="Add to Digg" /></a></li> <li><a href="http://dynamicdrive.com"><img src="media/twitter.png" title="Add to Twitter" /></a></li> <li><a href="http://dynamicdrive.com"><img src="media/rss.png" title="Add RSS Feed" /></a></li> </ul>
CSS3 Transform
- Kod:
-
.bubblewrap li img:hover{ -moz-transform:scale(1.8); /*scale up image 1.8x in FF3.5+*/ -webkit-transform:scale(1.8); /*Safari and Chrome version*/ -o-transform:scale(1.8); /*Opera 9.5+ version*/ } | |
|