鼠标放上去图片平滑变大效果

html:

<div class="box"><img src="images/p2.jpg" alt=""></div>

css:

img:hover{-moz-transform: scale(1.05); -ms-transform: scale(1.05); -o-transform: scale(1.05); -webkit-transform: scale(1.05); transform: scale(1.05);}
img{ -moz-transition: all ease 0.5s; -o-transition: all ease 0.5s; -webkit-transition: all ease 0.5s; transition: all ease 0.5s;}

 

posted @ 2016-09-28 18:41  Sunny_Lee  阅读(200)  评论(0编辑  收藏  举报