css预处理框架stylus——@keyframes 帧动画 和@font-face字体引入

@keyframes 帧动画

与普通css一样

.box
    width:100px
    height:100px
    background:#f40
    animation:run 3s
    @keyframes run 
        0%
            width:100px
        33%
            width:160px
        67%
            width:120px
        100%
            width:100px

@font-face

字体引入与普通css一样

@font-face
  font-family:'微软雅黑'
  font-style:normal
  src:url(fonts/geo_sans_light/GensansLight.ttf)

.box
  font-family:Geo

 

你可能感兴趣的:(css预处理框架-stylus)