91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

屯留县| 古蔺县| 江西省| 永城市| 蓝田县| 山丹县| 新兴县| 监利县| 平阳县| 通河县| 三都| 崇州市| 宝兴县| 嘉荫县| 浦城县| 新蔡县| 樟树市| 理塘县| 沅江市| 丰宁| 涡阳县| 江达县| 扎兰屯市| 大邑县| 淮安市| 九龙县| 礼泉县| 长治县| 吴江市| 天台县| 鸡西市| 阿城市| 三河市| 神木县| 瓮安县| 米易县| 禹城市| 女性| 永登县| 邢台县| 红河县|