ccss

CoffeeScript CSS
授权协议 MIT
开发语言 JavaScript HTML/CSS
所属分类 Web应用开发、 Node.js 扩展
软件类型 开源软件
地区 不详
投 递 者 孔才
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

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;
}
  • 1. 伪元素:清除浮动 给需要清除浮动的元素添加类名 clearfix 即可 .clearfix::after { content: ''; display: block; height: 0; line-height: 0; clear: both; visibility: hidden; } .clearfix { zoom: 1; }

  • CSS3 基础 border-radius 边框圆角 参数: 左上角、右上角、右下角、左下角 border-image 边框图片 box-shadow 边框阴影 参数:h-shadow、v-shadow 、blur 、spread 、color 、inset rgba() 在 rgb() 的基础上加入了 Alpha 通道,通过设置 Alpha 可以实现透明的效果 使用 background-ima