鼠标移到图片上图片放大【css3实例】
2021-01-05 02:29
标签:margin height color inter nsf idt hidden oct html 鼠标移到图片上图片放大【css3实例】 标签:margin height color inter nsf idt hidden oct html 原文地址:https://www.cnblogs.com/lwl80/p/13618574.html 1 DOCTYPE html>
2 html>
3 head>
4 meta charset="UTF-8">
5 title>title>
6 style type="text/css">
7 #div1{
8 width: 200px;
9 height: 138px;
10 border: #000 solid 1px;
11 margin: 50px auto;
12 overflow: hidden;
13 }
14 #div1 img{
15 cursor: pointer;
16 transition: all 0.6s;
17 }
18 #div1 img:hover{
19 transform: scale(1.4);
20 }
21 style>
22 head>
23 body>
24 div id="div1">
25 img src="demo.jpg" />
26 div>
27 body>
28 html>
文章标题:鼠标移到图片上图片放大【css3实例】
文章链接:http://soscw.com/index.php/essay/40167.html