Simple Machines Community Forum

SMF Support => Türkçe Bölümü (Turkish) => Language Specific Support => İpuçları ve Hileler => Topic started by: bolubeyi61 on June 07, 2011, 02:01:33 AM

Title: Konu içi resimlere hover verme
Post by: bolubeyi61 on June 07, 2011, 02:01:33 AM
Mause resimin üzerine gelince resim büyür, resime kenarlık eklenir.

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg203.imageshack.us%2Fimg203%2F9341%2F18393019.jpg&hash=8eaa137bdf3a36f67c37890c06ecc44f7d77b8a0)

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg525.imageshack.us%2Fimg525%2F7001%2F24504560.jpg&hash=730e86d71028f15b958f64c871106fb5f5b9eea0)

index.css
En alta ekle:
.spina_bifida_hover 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*/
}

.spina_bifida_hover 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;
}


Display.template.php
Bul:
<div class="inner" id="msg_', $message['id'], '"', '>', $message['body'], '</div>

Değiştir:
                        <div class="spina_bifida_hover"><div class="inner" id="msg_', $message['id'], '"', '>', $message['body'], '</div></div>



Demo: Buradan....... (http://www.spinabifidaturkey.com/smf/index.php?topic=3092.msg13070#msg13070)

Google chrome, frefoks, opera, ie9beta sürümlerde çalışır.

ie9beta sürüm altı çalışmaz.

Bir spinabifidaturkey.com (http://www.spinabifidaturkey.com/smf/index.php) yapımıdır.