scss 随着过渡而扩展

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scss 随着过渡而扩展相关的知识,希望对你有一定的参考价值。

.grow { transition: all .2s ease-in-out; }
.grow:hover { transform: scale(1.1); }
.photo {
  transition: all .2s .2s;
  
  // Also could be added translate to add more transitions
  &:hover {
    outline: 1.5rem solid #000;
    transform: translate(-50%,-50%) scale(1.05);
    box-shadow: 0 2.5rem 4rem rgba(#000, .5);
    z-index: 1;
  }
}

以上是关于scss 随着过渡而扩展的主要内容,如果未能解决你的问题,请参考以下文章

scss 会随着变换而改变

scss 指南针 - 过渡短hand.scss

scss 过渡

scss CSS过渡

scss CSS过渡

scss 全页模式 - 假滚动过渡曲线