zoukankan      html  css  js  c++  java
  • xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

    SCSS 复用 class 样式

    @mixin & @include

    复用的变量名称,不可以是 .class 开头⚠️

    ✅ css-varibale-name

    ❌ .css-class-name

    Mixins

    https://sass-lang.com/guide#topic-6

    API

    https://sass-lang.com/documentation/at-rules/mixin

    Playground

    https://sass.js.org/

    .router-link-custom-class {
        @mixin tools-hover-box {
            box-sizing: border-box;
            position: fixed;
            z-index: 999999;
            top: 60px;
            left: 0;
            bottom: 0;
            right: 0;
            background:#EEEEF0;
            overflow: auto;
             100vw;
            min- 1366px;
        }
        .tools-hover-box {
            @include tools-hover-box;
            height:0;
            transition: height 1s .3s ease-out;
        }
        .tools-hover-box:hover {
            @include tools-hover-box;
            height: 200px;
            transition: height 1s .3s ease-in;
        }
        &:hover {
            .tools-hover-box {
            @include tools-hover-box;
                height: 200px;
                transition: height 1s .3s ease-in;
            }
        }
    }
    
    .router-link-custom-class .tools-hover-box {
      box-sizing: border-box;
      position: fixed;
      z-index: 999999;
      top: 60px;
      left: 0;
      bottom: 0;
      right: 0;
      background: #EEEEF0;
      overflow: auto;
       100vw;
      min- 1366px;
      height: 0;
      transition: height 1s .3s ease-out;
    }
    
    .router-link-custom-class .tools-hover-box:hover {
      box-sizing: border-box;
      position: fixed;
      z-index: 999999;
      top: 60px;
      left: 0;
      bottom: 0;
      right: 0;
      background: #EEEEF0;
      overflow: auto;
       100vw;
      min- 1366px;
      height: 200px;
      transition: height 1s .3s ease-in;
    }
    
    .router-link-custom-class:hover .tools-hover-box {
      box-sizing: border-box;
      position: fixed;
      z-index: 999999;
      top: 60px;
      left: 0;
      bottom: 0;
      right: 0;
      background: #EEEEF0;
      overflow: auto;
       100vw;
      min- 1366px;
      height: 200px;
      transition: height 1s .3s ease-in;
    }
    
    

    refs



    ©xgqfrms 2012-2020

    www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!


  • 相关阅读:
    .NET版UEditor报请求后台配置项http错误,上传功能无法使用的错误解决
    [Asp.net mvc]Asp.net mvc 中使用LocalStorage
    Asp.net mvc Kendo UI Grid的使用(三)
    [Asp.net mvc]Asp.net mvc 使用Json传递数据
    Asp.net mvc Kendo UI Grid的使用(二)
    接口
    结构
    多态
    继承
    方法
  • 原文地址:https://www.cnblogs.com/xgqfrms/p/14183279.html
Copyright © 2011-2022 走看看