溫馨提示×

溫馨提示×

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

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

如何使用CSS實(shí)現(xiàn)核輻射警告標(biāo)志

發(fā)布時(shí)間:2022-01-20 14:50:00 來源:億速云 閱讀:292 作者:清風(fēng) 欄目:web開發(fā)

這篇“如何使用CSS實(shí)現(xiàn)核輻射警告標(biāo)志”除了程序員外大部分人都不太理解,今天小編為了讓大家更加理解“如何使用CSS實(shí)現(xiàn)核輻射警告標(biāo)志”,給大家總結(jié)了以下內(nèi)容,具有一定借鑒價(jià)值,內(nèi)容詳細(xì)步驟清晰,細(xì)節(jié)處理妥當(dāng),希望大家通過這篇文章有所收獲,下面讓我們一起來看看具體內(nèi)容吧。

  主要運(yùn)用了CSS的幾個(gè)屬性transform-origin/rotate/skewY,還不懂的趕快去看看哈。

  三個(gè)div實(shí)現(xiàn)

  <!DOCTYPE html>

  <html lang="en">

  <head>

  <meta charset="UTF-8">

  <meta name="viewport" content="width=device-width, initial-scale=1.0">

  <meta http-equiv="X-UA-Compatible" content="ie=edge">

  <title>核輻射警告標(biāo)志</title>

  </head>

  <style type="text/css">

  html,body {

  width: 100%;

  height: 100%;

  }

  #warning {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  margin: auto;

  width: 200px;

  height: 200px;

  border-radius: 100%;

  background-color: yellow;

  overflow: hidden;

  }

  。sector {

  position: absolute;

  top: 0;

  right: 0;

  width: 50%;

  height: 50%;

  transform-origin: 0% 100%;

  }

  。sector:nth-child(1) {

  transform: rotate(30deg) skewY(-30deg);

  background: black;

  }

  。sector:nth-child(2) {

  transform: rotate(-90deg) skewY(-30deg);

  background: black;

  }

  。sector:nth-child(3) {

  transform: rotate(-210deg) skewY(-30deg);

  background: black;

  }

  </style>

  <body>

  <div id="warning">

  <div class="sector"></div>

  <div class="sector"></div>

  <div class="sector"></div>

  </div>

  </body>

  </html>

  六個(gè)div實(shí)現(xiàn)

  <!DOCTYPE html>

  <html lang="en">

  <head>

  <meta charset="UTF-8">

  <meta name="viewport" content="width=device-width, initial-scale=1.0">

  <meta http-equiv="X-UA-Compatible" content="ie=edge">

  <title>核輻射警告標(biāo)志</title>

  </head>

  <style type="text/css">

  html,body {

  width: 100%;

  height: 100%;

  }

  #warning {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  margin: auto;

  width: 200px;

  height: 200px;

  border-radius: 100%;

  overflow: hidden;

  }

  。sector {

  position: absolute;

  top: 0;

  right: 0;

  width: 50%;

  height: 50%;

  transform-origin: 0% 100%;

  }

  。sector:nth-child(1) {

  transform: rotate(30deg) skewY(-30deg);

  background: black;

  }

  。sector:nth-child(2) {

  transform: rotate(-30deg) skewY(-30deg);

  background: yellow;

  }

  。sector:nth-child(3) {

  transform: rotate(-90deg) skewY(-30deg);

  background: black;

  }

  。sector:nth-child(4) {

  transform: rotate(-150deg) skewY(-30deg);

  background: yellow;

  }

  。sector:nth-child(5) {

  transform: rotate(-210deg) skewY(-30deg);

  background: black;

  }

  。sector:nth-child(6) {

  transform: rotate(-270deg) skewY(-30deg);

  background: yellow;

  }

  </style>

  <body>

  <div id="warning">

  <div class="sector"></div>

  <div class="sector"></div>

  <div class="sector"></div>

  <div class="sector"></div>

  <div class="sector"></div>

  <div class="sector"></div>

  </div>

  </body>

  </html>

css的三種引入方式

1.行內(nèi)樣式,最直接最簡單的一種,直接對HTML標(biāo)簽使用style=""。2.內(nèi)嵌樣式,就是將CSS代碼寫在之間,并且用

進(jìn)行聲明。3.外部樣式,其中鏈接樣式是使用頻率最高,最實(shí)用的樣式,只需要在之間加上

就可以了。其次就是導(dǎo)入樣式,導(dǎo)入樣式和鏈接樣式比較相似,采用@import樣式導(dǎo)入CSS樣式表,不建議使用。

感謝您的閱讀,希望您對“如何使用CSS實(shí)現(xiàn)核輻射警告標(biāo)志”這一關(guān)鍵問題有了一定的理解,具體使用情況還需要大家自己動手實(shí)驗(yàn)使用過才能領(lǐng)會,快去試試吧,如果想閱讀更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

css
AI