所以我看到了一些使用CSS製作的非常酷的東西,並且看到一些人的網站標識以純CSS完成,沒有圖像。使用純CSS的標誌設計
我真的很想了解它是如何完成的,我已經繪製出一個標誌,我將嘗試使用CSS重新設計,但意識到它真的有多難!所以爲了幫助我理解這一點,有人可以更正我的代碼,以便我能夠理解它的完成情況!
任何幫助表示讚賞:)謝謝。
(PS可怕的編碼,但你可以看到我是從哪裏來?)
這是什麼,我想實現
#logotop{
height:45px;
width:90px;
border-radius: 90px 90px 0 0;
-moz-border-radius: 90px 90px 0 0;
-webkit-border-radius: 90px 90px 0 0;
background:green;
}
#logobottom{
\t overflow: hidden;
height:45px;
width:45px;
\t -webkit-border-radius: 0 0 0 150px;
-moz-border-radius: 0 0 0 150px;
border-radius: 0 0 0 150px;
\t
background:green;
\t -webkit-transform: rotate(315deg);
-moz-transform: rotate(315deg);
-o-transform: rotate(315deg);
-ms-transform: rotate(315deg);
transform: rotate(315deg);
\t margin-left: auto ;
\t margin-right: auto ;
}
#logocenter{
\t overflow: hidden;
\t position: relative;
height:55px;
width:55px;
border-radius: 90px 90px 90px 90px;
-moz-border-radius: 90px 90px 90px 90px ;
-webkit-border-radius: 90px 90px 90px 90px ;
background:white;
\t margin-top: -72px;
\t margin-left: auto ;
\t margin-right: auto ;
}
#logocenter2{
\t overflow: hidden;
\t position: relative;
height:25px;
width:25px;
border-radius: 90px 90px 90px 90px;
-moz-border-radius: 90px 90px 90px 90px ;
-webkit-border-radius: 90px 90px 90px 90px ;
background:green;
\t margin-top: -40px;
\t margin-left: auto ;
\t margin-right: auto ;
\t
}
#content{
\t height: 90px;
\t width: 90px;
\t background-color: white;
\t
}
<div id="content">
<div id="logotop">
</div>
<div id="logobottom">
</div>
<div id="logocenter">
</div>
<div id="logocenter2">
</div>
</div>
我可以做的最好的,在工作(在醫院):[演示:https://jsfiddle.net/davidThomas/m6fag694/](https://jsfiddle.net/davidThomas/m6fag694/)。 –
這就是我想達到的目標,看起來相當不錯,你已經做到了公平!你已經給了我一些啓動和生病嘗試編輯這個,看看我是否可以編輯和理解我在做什麼!我的最終結果是我想旋轉圖像,做一些很酷的事情:)感謝回覆 –