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

css 鼠标移上去会变大

时间:2017-08-31 01:02:55      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:鼠标   pointer   div   overflow   doc   nsf   cal   style   border   

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
div{
width: 300px;
height: 300px;
border: #000 solid 1px;
margin: 50px auto;
overflow: hidden;
}
div img{
cursor: pointer;
transition: all 0.6s ease-in;
-webkit-transition: all 0.6s ease-in;
}
div img:hover{
transform: scale(1.4);
}
</style>
</head>
<body>
<div>
<img src="img/focus.png" />
</div>
</body>
</html>

css 鼠标移上去会变大

标签:鼠标   pointer   div   overflow   doc   nsf   cal   style   border   

原文地址:http://www.cnblogs.com/dianzan/p/7456128.html

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