1. 程式人生 > 其它 >css3 製作圓柱體

css3 製作圓柱體

技術標籤:csscss3csshtml

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>

在這裡插入圖片描述