Come And Feel the Difference
Avatar Image Houver - Printable Version

+- Come And Feel the Difference (https://www.gookil.com/x2)
+-- Forum: Cyberspace (https://www.gookil.com/x2/forum-18.html)
+--- Forum: MyBB (https://www.gookil.com/x2/forum-151.html)
+--- Thread: Avatar Image Houver (/thread-419.html)



Avatar Image Houver - Terzier - 04-16-2012

ngakak
iseng² berhadiah Monkey_big

belajar dari Google, akhirnya berhasil juga bikin avatar images houver. Rolling_on_the_floor_big

ok, let rock Applause_big

spt biasa, masuk ke ACP, Home » Template Sets » Pilih template » Templates » Edit Template: Post Bit Templates » postbit_avatar

edit :
Code:
<a href="{$post['profilelink_plain']}"><img src="{$post['avatar']}" alt="" {$avatar_width_height} /></a>

ganti dengan :
Code:
<div class="css3gallery"><a href="{$post['profilelink_plain']}"><img src="{$post['avatar']}" alt="" {$avatar_width_height} /></a></div>

langkah berikut, masuk ke theme. dan buat stylesheet baru, terserah mau pake nama apa Biggrin dan masukkan css berikut :
Code:
.css3gallery img{
-webkit-transform:scale(0.8); /*Webkit: Scale down image to 0.8x original size*/
-moz-transform:scale(0.8); /*Mozilla scale version*/
-o-transform:scale(0.8); /*Opera scale version*/
-webkit-transition-duration: 0.5s; /*Webkit: Animation duration*/
-moz-transition-duration: 0.5s; /*Mozilla duration version*/
-o-transition-duration: 0.5s; /*Opera duration version*/
opacity: 0.7; /*initial opacity of images*/
margin: 0 10px 5px 0; /*margin between images*/
}

.css3gallery img:hover{
-webkit-transform:scale(1.1); /*Webkit: Scale up image to 1.2x original size*/
-moz-transform:scale(1.1); /*Mozilla scale version*/
-o-transform:scale(1.1); /*Opera scale version*/
box-shadow:0px 0px 30px gray; /*CSS3 shadow: 30px blurred shadow all around image*/
-webkit-box-shadow:0px 0px 30px gray; /*Safari shadow version*/
-moz-box-shadow:0px 0px 30px gray; /*Mozilla shadow version*/
opacity: 1;
}

done. save as, dan lihat avatar kamu. Rolling_on_the_floor_big