CSS3現菱形效果程式碼

admin發表於2018-07-22
本章節分享一段程式碼例項,它實現了視覺上的菱形效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
body {background: #f1f1fa;}
.container{
  margin:140px auto 0;
  font-size:0;
  max-width:560px;
}
.wrap{
  transform: rotate(45deg) translate3d(0, 0, 0);
  display: inline-block;
  transition:transform 300ms ease-out;
  width:100px;
}
 
.crop{
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0;
  display: block;
  overflow: hidden;
  transform: skew(20deg, 20deg) translate3d(0, 0, 0);
  background-color: #1ABC9C;
}
</style>
<head>
</head>
<body>
<div class='container'>
  <div class='wrap'>
    <div class='crop'></div>
  </div>
  </div>
</div>
</body>
</html>

其實非常的簡單,就是讓元素進行3D運動一定的角度,在視覺上實現了菱形效果。

相關文章