iT邦幫忙

2019 iT 邦幫忙鐵人賽

DAY 23
0
自我挑戰組

sass&css 30天學習日誌系列 第 23

SASS : extend、mixin與function應用

  • 分享至 

  • xImage
  •  

網頁製作常看到不同字級,如h1、h2、h3…等等,這些是依照網頁種種情境下所產生的規範語法
也因此網頁漸漸達到模組化,後來也衍生出UI Kit,這種針對各部分所產生的元件,類似bootstrap

https://ithelp.ithome.com.tw/upload/images/20200412/2010732101v4tysNSj.jpg

http://bootflat.github.io/img/bootflat-ui-kit.jpg

而mixin和function就可以依照不同的參數運用,產生像是h1、h2、h3不同等級的元件大小、樣式

mixin 介紹: https://ithelp.ithome.com.tw/articles/10193702
extend 介紹: https://ithelp.ithome.com.tw/articles/10204606
function 介紹: https://ithelp.ithome.com.tw/articles/10204980

在此以按鈕大小為例,分兩部分說明:

1.mixin和function: 運算程式模組化

01.建立程式

a. 設定變數$baseLineHeight,他的值為 10px
b. 建立名叫做padding的@function,為運算程式
c. @function內容裡面分兩部分: @if和@return,詳情可看下圖文字說明
d. 使用mixin,裡面的內容是@function,如果有多個@function,可一次全部帶入到css中

https://ithelp.ithome.com.tw/upload/images/20200412/20107321bLtIpEmtna.png

02.引入到css中

使用@include + mixin名稱+(數值)

(數值): 沒內容就是預設值,在此預設值為1,填上3如下:

@mixin a(3) {
}

因為所有裡面的@function參數為3

padding:padding(3);

所以套用到運算公式

$baseLineHeight = 10px
$baseLineHeight * 3 = 30px

https://ithelp.ithome.com.tw/upload/images/20200412/20107321EohUoM5pw2.png

2.extend: 把重複的樣式集中在一起

新增extend內容

01.增加extend名稱,格式使用「.」+名稱,裡面放重複的樣式

https://ithelp.ithome.com.tw/upload/images/20200412/20107321bdAdSH05Hc.png

02.在class或是id內的樣式放上@extend + extend名稱

結果如下圖:
右方的css編譯後會呈現
extend名稱+「,」+已套用的class或是id名稱,裡面內容放重複的樣式,也就是共用一份

https://ithelp.ithome.com.tw/upload/images/20200412/20107321KcKhNeS5bv.png

完成後的網頁畫面:

https://ithelp.ithome.com.tw/upload/images/20200412/20107321BxESAoByyV.png

網頁原始碼如下:

html

<a class="btn_form">登入會員</a>
<a class="btn_form2">結帳</a>

scss

* {
  margin:20px auto;
  width: 500px;
}
%a_btn {
  text-decoration: none;
  display: block;
  cursor: pointer;
  text-align: center;
}
$baseLineHeight: 10px;
// @return: 在這個名叫做padding的程式中,一直跑$baseLineHeight * 預設參數;
// @if:但是如果 $count賦予的值小於1,他的值就是1
@function padding ( $count:1) {
  @if $count < 1 {
    $count: 1;
  }
  @return $baseLineHeight * $count;
}
//設定 mixin 叫做a,裡面帶有參數預設值為1
//a裡面執行內容為css padding的數值,是用@function padding()產生
@mixin a($level:1) {
  padding:padding($level);
}
.btn_form {
  @extend %a_btn;
  @include a();
  background-color: tomato;
  color:#fff;
}
.btn_form2 {
  @extend %a_btn;
  @include a(3);
  background-color: tan;
}

上一篇
SASS : extend與mixin差異
下一篇
SASS : Function應用-單位轉換
系列文
sass&css 30天學習日誌30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言