一步一步教你用CSS畫愛心


今天小穎給大家分享一個用CSS畫的愛心,底下有代碼和制作過程,希望對大家有所幫助。

第一步:

       先畫一個正方形。如圖:

          

<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8">
    <title>css畫桃心</title>
    <style media="screen">
        .heart-body {
            width: 500px;
            margin: 100px auto;
            position: relative;
        }

        .heart-shape {
            position: relative;
            width: 100px;
            height: 100px;
            background-color: #f70e0e;
        }
    </style>
</head>

<body>
    <div class="heart-body">
        <div class="heart-shape"></div>
    </div>
</body>

</html>

第二步:

         將利用偽元素before和 :after,在正方形的左邊和上邊各畫一個正方形,然后再利用border-radius: 50%;屬性,修飾下這兩個正方形,然后就得到了兩個圓,如圖所示:

                 

        .heart-shape:before,
        .heart-shape:after {
            position: absolute;
            content: '';
            width: 100px;
            height: 100px;
            background-color: #ffc0cb;
        }

        .heart-shape:before {
            left: -45px;
        }

        .heart-shape:after {
            top: -45px;
        }

 利用border-radius: 50%; 屬性:

        .heart-shape:before,
        .heart-shape:after {
            position: absolute;
            content: '';
            width: 100px;
            height: 100px;
            -webkit-border-radius: 50%;
            /**兼容蘋果;谷歌,等一些瀏覽器認*/
            -moz-border-radius: 50%;
            /**兼容火狐瀏覽器*/
            -o-border-radius: 50%;
            /**兼容opera瀏覽器*/
            border-radius: 50%;
            background-color: #ffc0cb;
        }

第三步:

        類名為:heart-shape的div 利用transform: rotate(45deg); 屬性將他們旋轉45度,如圖所示:

         

        .heart-shape {
            position: relative;
            width: 100px;
            height: 100px;
            background-color: #f70e0e;
            -webkit-transform: rotate(45deg);
            /* Safari 和 Chrome */
            -moz-transform: rotate(45deg);
            /* Firefox */
            -ms-transform: rotate(45deg);
            /* IE 9 */
            -o-transform: rotate(45deg);
            /* Opera */
            transform: rotate(45deg);
        }

小穎把圓的背景色和正方形的背景色沒給統一的顏色,是為了大家更好的看到明顯的效果圖,接下來小穎將其背景色設置成統一的,最終的愛心就出來了,如圖所示:

    

        .heart-shape:before,
        .heart-shape:after {
            position: absolute;
            content: '';
            width: 100px;
            height: 100px;
            -webkit-border-radius: 50%;
            /**兼容蘋果;谷歌,等一些瀏覽器認*/
            -moz-border-radius: 50%;
            /**兼容火狐瀏覽器*/
            -o-border-radius: 50%;
            /**兼容opera瀏覽器*/
            border-radius: 50%;
            background-color: #f70e0e;
        }


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM