溫馨提示×

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

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

如何使用CSS寫(xiě)一個(gè)商城卡券

發(fā)布時(shí)間:2021-08-03 10:22:24 來(lái)源:億速云 閱讀:142 作者:小新 欄目:web開(kāi)發(fā)

這篇文章主要介紹如何使用CSS寫(xiě)一個(gè)商城卡券,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

具體如下:

如何使用CSS寫(xiě)一個(gè)商城卡券 

如何使用CSS寫(xiě)一個(gè)商城卡券

還在為上面這樣格式各樣的商城卡券的樣式而發(fā)愁?CSS 不熟,canvas 太難,怎么辦?

用 CSS 寫(xiě)一個(gè)商城卡券需要幾步?

一共需要三步:

  • 打開(kāi)這個(gè)網(wǎng)址(瀏覽器輸入 https://qishaoxuan.github.io/css_tricks/hollowOut/ )

  • 找到需要的樣式

  • 復(fù)制粘貼

交給測(cè)試后,我們來(lái)分析下 CSS 卡券。

我們來(lái)準(zhǔn)備一下基礎(chǔ)知識(shí)

radial-gradien:

background: radial-gradient(shape size at position, start-color, ..., last-color);
描述
shape確定圓的類(lèi)型: 
ellipse (默認(rèn)): 指定橢圓形的徑向漸變。 circle :指定圓形的徑向漸變
size定義漸變的大小
position定義漸變的位置

這樣,我們能很容易寫(xiě)出一個(gè)居中的圓形背景圖

.center-circle {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 50px 50px, transparent 10px, #00adb5 0);
  }

linear-gradient

background: linear-gradient(direction, color-stop1, color-stop2, ...);
描述
direction用角度值指定漸變的方向(或角度)
color-stop1, color-stop2,...用于指定漸變的起止顏色

我們不需要知道具體的漸變過(guò)程,只要寫(xiě)一個(gè)簡(jiǎn)單的,寫(xiě)一個(gè)使用漸變屬性而不漸變背景圖即可:

.linear-gradient {
    width: 100px;
    height: 100px;
    background: linear-gradient(to right, #00adb5, #00adb5);
  }

background

background 是可以設(shè)置多個(gè)圖片的,遵循 background: [background-color] [background-image] [background-repeat] [background-attachment] [background-position] / [ background-size] [background-origin] [background-clip]; 使用 , 隔開(kāi)即可。

開(kāi)始組合基礎(chǔ)知識(shí)

寫(xiě)一個(gè)最簡(jiǎn)單的

如何使用CSS寫(xiě)一個(gè)商城卡券

只要把上述中心圓示例的圓形位置定位在左側(cè)即可

.left-circle{
  width: 100px;
  height: 100px;
  position: relative;
  background: radial-gradient(circle at 0 50px, transparent 10px, #00adb5 0) top left/100px 100% no-repeat;
}

進(jìn)一步學(xué)習(xí)

如何使用CSS寫(xiě)一個(gè)商城卡券

你可還記得 background 是有 repeat 屬性嗎?也就是說(shuō)我們只要設(shè)置一部分樣式,再使用 repeat 即可,看下圖片,這不就是一個(gè)不漸變的 linear-gradientradial-gradient 的組合嗎,再借助偽類(lèi),我們即可寫(xiě)出來(lái)了。

.hollow-circles {
  width: 300px;
  height: 100px;
  position: relative;
  background: #00adb5;
  margin-bottom: 10px;
}
.hollow-circles::after {
  content: '';
  position: absolute;
  height: 5px;
  width:100%;
  left: 0;
  bottom: -5px;
  background-image: linear-gradient(to right, #00adb5 5px, transparent 5px, transparent),
  radial-gradient(10px circle at 10px 5px, transparent 5px, #00adb5 5px);
  background-size: 15px 5px;
}

復(fù)雜一點(diǎn)

如何使用CSS寫(xiě)一個(gè)商城卡券

看見(jiàn)很簡(jiǎn)單,不就是剛才那個(gè)圓再畫(huà)一個(gè)嗎,但是要考慮到兩側(cè)的顏色是不同的,所以我們需要畫(huà)四個(gè)背景圖才行,將每個(gè)圓定位在方形的各個(gè)角落,然后組合在一起即可。

.two-circles {
  width: 300px;
  height: 100px;
  background: radial-gradient(circle at right top, transparent 10px, #00adb5 0) top left / 60px 51% no-repeat,
    radial-gradient(circle at right bottom, transparent 10px, #00adb5 0) bottom left /60px 51% no-repeat,
    radial-gradient(circle at left top, transparent 10px, #eeeeee 0) top right /240px 51% no-repeat,
    radial-gradient(circle at left bottom, transparent 10px, #eeeeee 0) bottom right /240px 51% no-repeat;
}

以上是“如何使用CSS寫(xiě)一個(gè)商城卡券”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

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

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

css
AI