返回 鼠标移到图片放...... 登陆

鼠标移到图片放大效果

不羁 2018-11-27 08:49:12 444
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>鼠标移上图片放大效果</title>
    <link rel="shortcut icon"  href="static/images/logo.png" type="image/x-icon" />
    <style type="text/css">
       .pic{width: 500px;margin: 150px auto;}
       .pic img{
        border-radius: 5px;
        transition: all 0.1s;
       }
       .pic:hover img{
        transform:scale(1.5);
       }
    </style>
</head>
<body style="background:#ccc;">
<div class="pic">
    <img src="static/images/1.jpg">
</div>
</body>
</html>

```css

.pic img{
       border-radius: 5px;
       transition: all 0.1s;
      }

.pic:hover img{
       transform:scale(1.5);
      }

```

最新手记推荐

• 用composer安装thinkphp框架的步骤 • 省市区接口说明 • 用thinkphp,后台新增栏目 • 管理员添加编辑删除 • 管理员添加编辑删除

全部回复(0)我要回复

暂无评论~
  • 取消 回复 发送