您好,登錄后才能下訂單哦!
這篇文章主要介紹“css如何實現心形”,在日常操作中,相信很多人在css如何實現心形問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”css如何實現心形”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
css實現心形的方法:首先利用“border-radius:100%”樣式畫兩個正圓;然后進行定位,將兩個圓重合一部分;接著畫一個正方形,進行定位,將正方形與兩個圓重合一部分,形成一個傾斜的心形;最后使用transform樣式調整愛心角度。
本教程操作環境:windows7系統、CSS3&&HTML5版、Dell G3電腦。
前期預備知識:
明白正方形的畫法。
明白圓形的畫法。
明白什么是定位。
明白怎么旋轉。
話不多說,先教大家怎么用css畫一個圓形。
.disc1{ width: 100px; height: 100px; border:1px solid red; background-color: red; margin:300px 0px 0px 300px; border-radius:100%; float:left; }
由于我們的愛心是由兩個圓和一個正方形組成的,所以我們還需要再來一個圓形。
.disc2{ width: 100px; height: 100px; border:1px solid red; background-color: red; margin:250px 0px 0px 0px; border-radius:100%; float:left; position: relative; right: 50px; }
第三步我們就需要做一個正方形了。
.square{ width: 100px; height: 100px; border:1px solid red; background-color: red; margin: 300px 0px 0px 0px; float: left; position: relative; right: 152px; }
做完這些的效果已經基本上出來了,但是我們還需要調整一下愛心的角度,這時就需要用到我們css樣式中的transform中的rotate屬性了。
我們由于需要把三個div都旋轉角度,所以我們把這三個div放在一個div里面。具體代碼如下:
.main{ transform: rotate(45deg); margin: 300px; }
做到現在,我們的愛心就已經做出來咯。效果圖如下:
全部代碼如下(包含HTML代碼和CSS代碼)
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <style> *{ margin: 0px; padding: 0px; } .main{ transform: rotate(45deg); margin: 300px; } .disc1{ width: 100px; height: 100px; border:1px solid red; background-color: red; margin:300px 0px 0px 300px; border-radius:100%; float:left; } .disc2{ width: 100px; height: 100px; border:1px solid red; background-color: red; margin:250px 0px 0px 0px; border-radius:100%; float:left; position: relative; right: 50px; } .square{ width: 100px; height: 100px; border:1px solid red; background-color: red; margin: 300px 0px 0px 0px; float: left; position: relative; right: 152px; } </style> </head> <body> <div class="main"> <div class="disc1"></div> <div class="disc2"></div> <div class="square"></div> </div> </body> </html>
到此,關于“css如何實現心形”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。