国产gaysexchina男同gay,japanrcep老熟妇乱子伦视频,吃奶呻吟打开双腿做受动态图,成人色网站,国产av一区二区三区最新精品

App下載
首頁htmltranslateAnimation - 如何創(chuàng)建css3 transform平移

Animation - 如何創(chuàng)建css3 transform平移

我們想知道如何創(chuàng)建css3 transform平移。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.deneme {
  width: 50px;
  height: 50px;
  background-color: #06F;
  color: #fff
}

#tasinan {
  -moz-transform: translate(150px, 100px);
  -ms-transform: translate(150px, 100px);
  -o-transform: translate(150px, 100px);
  -webkit-transform: translate(150px, 100px);
  transform: translate(150px, 100px)
}
</style>
</head>
<body>
  <div class="deneme">Abc</div>
  <div class="deneme" id="tasinan">Def</div>
</body>
</html>