码迷,mamicode.com
首页 > Web开发 > 详细

CSS3实现鼠标经过图片时图片放大

时间:2017-06-09 20:53:24      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:link   1.2   body   blog   href   tran   doctype   color   过渡   

在鼠标经过图片时,图片被放大,而且还有个过渡的效果....

 1 <!DOCTYPE html>
 2 <html>
 3 <head>
 4     <link href="css/prodInfo.css" rel="stylesheet" type="text/css">
 5 </head>
 6 <style>
 7     div img{
 8         border:1px soild red;
 9         height: 218px;
10         width: 222px;
11         width:100%; 
12         transition: all 0.6s;  
13     }
14     img :hover{
15         transform: scale(1.2); /* 放大1.2倍 */
16     }
17 </style>
18 <body>
19     <div>
20         <img src="img/prodInfo/lf.jpg"/>
21     </div>
22 </body>
23 </html>

 

CSS3实现鼠标经过图片时图片放大

标签:link   1.2   body   blog   href   tran   doctype   color   过渡   

原文地址:http://www.cnblogs.com/tongxuping/p/6973662.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!