MyBB Community Forums

Full Version: mycode enlarge image on mouseover
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Add global.css theme you are using
.hovergallery 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*/ } .hovergallery 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; } 

Add Mycode
Tile: images
Regular Expression *: 

\[img\](.*?)\[/img\] 


Replacement *


<a class="hovergallery"><img src="$1" style="margin: 7px auto; padding: 2px; outline-style: none; border-width: 6px ! important; opacity: 0.9; display: block; border-style: solid ! important; border-color: rgb(255, 255, 255) ! important; background-color: rgb(255, 255, 255); box-shadow: 0px 0px 9px rgb(68, 68, 68); border-radius: 5px; max-width: 700px; max-height: 700px;"/></a> 


Save 
Demo: https://www.youtube.com/watch?v=oeYij3Gq50o