Bourbon - Sass mixins 集合


MIT
跨平台
HTML/CSS

软件简介

Bourbon 包含了一组 Sass mixins,主要为了简化使用,无需配置。

示例代码:

box:hover {
  @include animation-name(scale, slide);
  @include animation-duration(2s);
  @include animation-timing-function(ease);
  @include animation-iteration-count(infinite);

  // Animation shorthand works the same as the CSS3 animation shorthand
  @include animation(scale 1.0s ease-in, slide 2.0s ease);
}