亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

css如何實現心形

發布時間:2021-07-23 16:58:59 來源:億速云 閱讀:260 作者:chen 欄目:web開發

這篇文章主要介紹“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;
}

css如何實現心形

由于我們的愛心是由兩個圓和一個正方形組成的,所以我們還需要再來一個圓形。

.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;
}

css如何實現心形

第三步我們就需要做一個正方形了。

.square{
    width: 100px;
    height: 100px;
    border:1px solid red;
    background-color: red;
    margin: 300px 0px 0px 0px;
    float: left;
    position: relative;
    right: 152px;
}

css如何實現心形

做完這些的效果已經基本上出來了,但是我們還需要調整一下愛心的角度,這時就需要用到我們css樣式中的transform中的rotate屬性了。

我們由于需要把三個div都旋轉角度,所以我們把這三個div放在一個div里面。具體代碼如下:

.main{
    transform: rotate(45deg);
    margin: 300px;
}

做到現在,我們的愛心就已經做出來咯。效果圖如下:

css如何實現心形

全部代碼如下(包含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如何實現心形”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

css
AI

公主岭市| 康乐县| 玉环县| 卫辉市| 西丰县| 舟曲县| 吉安县| 金川县| 镇赉县| 柳林县| 通海县| 山东省| 博白县| 麟游县| 娱乐| 屏南县| 江川县| 甘肃省| 泰和县| 荣成市| 桂阳县| 建阳市| 庐江县| 田阳县| 宣城市| 台安县| 秦安县| 横峰县| 新民市| 新营市| 桃江县| 襄垣县| 惠来县| 元朗区| 澄城县| 苏尼特左旗| 科技| 肥西县| 黄平县| 文化| 宜阳县|