微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ccss CoffeeScript CSS

程序名称:ccss

授权协议: MIT

操作系统: 跨平台

开发语言: JavaScript

ccss 介绍

CoffeeScript CSS 这个名字跟 CoffeeScript
无关,将脚本化的样式变成 CSS 代码

install: npm install ccss

main.coffee:

ccss = require 'ccss'

template = require './template.coffee'
css = ccss.compile template
require('fs').writeFileSync 'main.css', css

#or all at once: ccss.compileFile './template.coffee', 'main.css'

template.coffee:

borderRadius = (str) ->
  WebkitBorderRadius: str
  MozBorderRadius:    str
  borderRadius:       str

BoxShadow = (str) ->
  WebkitBoxShadow: str
  MozBoxShadow:    str
  BoxShadow:       str

module.exports =
  form:
    input:
      padding: '5px'
      border: '1px solid'
      mixins: borderRadius '5px'
  '#id .className': do ->
    opaque = 1
    translucent = opaque / 2
    img:
      mixins: [
        borderRadius '5px'
        BoxShadow '5px'
      ]
      opacity: translucent
    'img:hover':
      opacity: opaque

main.css:

form input {
  padding: 5px;
  border: 1px solid;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
#id .className img {
  opacity: 0.5;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-Box-shadow: 5px;
  -moz-Box-shadow: 5px;
  Box-shadow: 5px;
}
#id .className img:hover {
  opacity: 1;
}

ccss 官网

https://github.com/aeosynth/ccss

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐