Bourbon轻量级 Sass 工具集
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);
}
评论