Skip to content

r-ui/rui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RUI 是一套基础样式库

执行任务

$ gulp watch

文档预览

  1. 克隆RUI
  2. 切换到 gh-pages 分支
$ git clone https://github.com/r-ui/rui.git
$ git checkout gh-pages

使用

JS 中引入模块。未上传npm,目前不能使用,如果使用,使用方法

  1. $ git clone URL 进入cd rui
  2. 运行命令 npm link 添加软链,就相当于全局安装rui
  3. 进入要使用的项目 npm link rui 在该项目中进行添加软链,此时可以在项目中引用。
var rui = require('rui'),
    stylus    = require('stylus');

function compile(str) {
  return stylus(str)
    .use(rui());
}

Stylus 中使用

@import 'rui/variables'
@import 'rui/mixins'
@import 'rui/alerts'