国产chinesehdxxxx野外,国产av无码专区亚洲av琪琪,播放男人添女人下边视频,成人国产精品一区二区免费看,chinese丰满人妻videos

App下載
首頁htmlblurAnimation - 如何在懸停時(shí)創(chuàng)建模糊效果項(xiàng)

Animation - 如何在懸停時(shí)創(chuàng)建模糊效果項(xiàng)

我們想知道如何在懸停時(shí)創(chuàng)建模糊效果項(xiàng)。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
ul {
  height: 200px;
  list-style: none;
  margin: 100px auto;
  width: 400px;
}

li {
  background: red;
  float: left;
  height: 80px;
  margin: 0 20px 20px 0;
  width: 80px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

ul:hover li {
  box-shadow: 0 0 15px 5px red;
  opacity: .25;
  -webkit-transform: scale(.8);
  -moz-transform: scale(.8);
  -ms-transform: scale(.8);
  -o-transform: scale(.8);
  transform: scale(.8);
}

ul li:hover {
  box-shadow: none;
  opacity: 1;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
</style>
</head>
<body>
  <ul>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
  </ul>
</body>
</html>