CSS3梯形效果程式碼例項

antzone發表於2018-05-28

分享一段程式碼例項,它實現了梯形效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
.trapezoid{
  position: absolute;
  top:50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 160px;
  padding: 60px;
  text-align: center;
  color: white;
  font-size: 200%;
}
.trapezoid:before{
  content:"";
  position: absolute;
  top: 0; 
  right: 0; 
  bottom: 0; 
  left: 0;
  transform:perspective(40px) scaleY(1.3) rotateX(5deg);
  transform-origin: bottom;
  background:deeppink;
  z-index:-1;
}        
</style>
</head>
<body>
<div class="trapezoid"></div>
</body>
</html>

相關文章