css3 圆柱体
圆柱体(视角效果上的圆柱体)的制作原理其实很简单,主要考察transfrom:rotatex()、border-radius的运用
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box{
margin-left: 100px;
width:200px;
height:200px;
border:solid 1px black;
background: indianred;
border-radius: 100px;
transform: rotateX(70deg);
}
.box:after{
content: '';
display:inline-block;
width:200px;
height: 280px;
position:relative;
opacity: 0.6;
background:indianred;
top:50%;
left:-0.5px;
border-left:black 0.5px solid;
border-right:black 0.5px solid;
border-bottom: black 0.5px solid;
border-bottom-left-radius: 100px;
border-bottom-right-radius:100px;
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>

本文介绍了如何利用CSS3的transform: rotateX()和border-radius属性创建出视角效果上的圆柱体。通过设置合适的角度和边框半径,结合伪元素,可以实现一个具有立体感的红色圆柱体,并且添加了透明度效果增强视觉效果。
1816

被折叠的 条评论
为什么被折叠?



