网页图标缩放

方式一:使用css codepen链接

<!DOCTYPE html>
<html>
<head>
</head>
<body>
  <img src='https://www.easyicon.net/download/png/1205508/128/' class='up' />
  <style>
  .up {
  width:100px;
  height:100px;

  transition-property:width,height;
  transition-duration:0.5s;
  }

  .up:hover {
    width:120px;
    height:120px;
  }
  </style>
</body>
</html>

方式二:使用js(待完成)

posted @ 2019-01-31 18:19  mengfu188  阅读(105)  评论(0)    收藏  举报