css3是css的升級版,其中也出現了很多新特性,本文主要介紹了css3新特性應用之形狀總結,非常具有實用價值,需要的朋友可以參考下,希望能幫助到大家。
一、自適應橢圓
## border-radius特性:
#
.wrap{ border-radius: 50% / 30%; width: 60px; height: 80px; background: yellow; } .wrap02{ width: 60px; height: 80px; background: yellow; border-radius: 50% / 100% 100% 0 0; } .wrap03{ width: 60px; height: 80px; background: yellow; border-radius: 100% 0 0 0; }
.wrap{ width: 80px; height: 40px; transform: skewX(-45deg); background: yellow; } .wrap>p{ transform: skewX(45deg); } .btn{ position: relative; padding: 10px; } .btn:before{ content: ''; position: absolute; top: 0px; left: 0px; right: 0px; bottom: 0px; z-index: -1; background: #85a; transform: skewX(-45deg); }
.wrap{ width: 200px; transform: rotate(-45deg); overflow: hidden; } .wrap > img{ transform: rotate(45deg) scale(1.42); max-width: 100%; }
#四、切角效果
利用linear-gradient可以設定角度,多值和漸變透明來實現。
.wrap{ width: 200px; height: 100px; background: #58a; background: linear-gradient(-135deg, transparent 15px, #58a 0px) top right, linear-gradient(135deg,transparent 15px, #655 0px) top left, linear-gradient(-45deg, transparent 15px, #58a 0px) bottom right, linear-gradient(45deg, transparent 15px, #655 0px) bottom left; background-size: 50% 50%; background-repeat: no-repeat; }
可以利用border-image實作切角,設定border-image-slice(圖片邊框向內偏移)的值;
border-image用svg來做圖片
#border設定寬度+透明,再加上border-image-slice向內偏移就造就了邊框切角邊框;
background-clip:要設定為padding-box,不然背景會延伸到邊框上。
.wrapSvg{ border:15px solid transparent; border-image: 1 url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" width="3" height="3" fill="%2358a"><polygon points="0,1 1,0 2,0 3,1 3,2 2,3 1,3 0,2"/></svg>'); margin-top: 50px; width: 200px; height: 100px; background: #58a; background-clip: padding-box; }
#利用clip-path屬性,但不完全受支援
css4會直接給予corner-path屬性來支援切角
了解transform的基本原理
a和d表示縮放且不能為0;c和b控制傾斜;e和f控制位移translate(位移):matrix(1,0,0,1,x,y)
#scale(縮放):matrix(x,0,0,y,0 ,0);
skew(傾斜):matrix(1,tany,tanx,1,0,0),由於輸入的是deg(角度),需要將角度轉換為弧度值
rotate(旋轉):matrix(cosN,sinN,-sinN,cosN,0,0),角度轉換為弧度
上述值的應用都與transform-origin的值有關係,他是定位元素旋轉的原點,可以是top,bottom,center等,可以指定x,y,z三種坐標系
表示觀察者到被觀察物體的一段距離
透視距離與物體越遠,物體就會顯得越小
透視只能設定在變形元素的父級或祖先級,因為瀏覽器會為其子級的變形產生透視效果
在3d變換上沒有傾斜(skew)這個屬性。
#六、簡單的餅圖
動畫餅圖,效果如下:
實作步驟如下:画出一个yellowgreen的圆,并利用linear-gradient设置background-image的值,实现两种颜色各显示一半的功能:
然后加入一个伪元素,继承父级(真实元素)的背景色,然后用rotate旋转即可
要利用margin-left让其靠左
利用transform-origin设置其旋转定位点
动画展示代码如下:
@keyframes spin{ to{ transform: rotate(.5turn); } } @keyframes bg{ 50%{ background-color: #655; } } .wrap{ width: 100px; height: 100px; border-radius: 50%; background: yellowgreen; background-image: linear-gradient(to right, transparent 50%, #655 0); } .wrap::before{ content: ''; display: block; margin-left: 50%; background-color: inherit; height: 100%; border-radius: 0 100% 100% 0 / 50%; transform-origin: left; animation:spin 3s linear infinite, bg 6s step-end infinite; }
相关推荐:
以上是關於css3新特性的形狀總結的詳細內容。更多資訊請關注PHP中文網其他相關文章!