iT邦幫忙

0

SCSS ( @mixin @include )

  • 分享至 

  • xImage
  •  

1. 引入

(1) 安裝
https://ithelp.ithome.com.tw/upload/images/20220310/20137684i3zYB8GdCe.png
(2) 記得開啟
https://ithelp.ithome.com.tw/upload/images/20220310/20137684YUuO09jxgX.png
(3) 成功編譯
https://ithelp.ithome.com.tw/upload/images/20220310/201376845EdMiyQFaP.png


1. 使用

https://5xruby.tw/posts/play-sass-mixin-and-include

定義一個名稱,將需要重複使用的 CSS 放在裡面

$primary: #248bf1; // $定義變數
@mixin backgroundImageStyle($attachment, $notRepeat: false) {
  background-position: center;
  background-size: cover;
  background-attachment: $attachment;
  // 預設repeat
  @if $notRepeat {
    // 如果true打開
    background-repeat: no-repeat;
  }
}

呼叫使用

body {
  @include backgroundImageStyle(fixed, $notRepeat: false);
  background-image: url("../image/Cyberpunk-featured-movie-bg.jpg");
}

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言