jquery - When hover the Selected image, the selected Image pops up -
my code pure html few javascript.i have sets of image need when hover image pops in big picture or same size
html code:
<div class="content-box-left-bootomgrid lastgrid"> <img src="../images2.jpg" title="ocean" /> <img src="../images3.jpg" title="pool" /> </div>
when users hover image,the image pops need
img { height: 200px; width: 200px; -webkit-transition: 1s ease-in-out; -moz-transition: 1s ease-in-out; -o-transition: 1s ease-in-out; -ms-transition: 1s ease-in-out; transition: 1s ease-in-out; } img:hover { -webkit-transform: scale(1.2); -moz-transform: scale(1.2); -o-transform: scale(1.2); -ms-transform: scale(1.2); transform: scale(1.2); }
try one. think proper way it. increase or decrease number inside scale.