All Projects → iRuxu → csslab

iRuxu / csslab

Licence: other
用于快速进行页面重构的CSS函数库

Programming Languages

Less
1899 projects

Projects that are alternatives of or similar to csslab

webpack-starter
A basic setup of webpack goodness. Packed with common fronted workflow to help ease development headache. Ready with development and production config. Feel free to fork and enhance. Have an Awesome frontend coding!
Stars: ✭ 22 (+15.79%)
Mutual labels:  css3, frontend-web
Html boilerplate
Ceicom Boilerplate
Stars: ✭ 6 (-68.42%)
Mutual labels:  less, css3
Sbuttons
💡 Simple buttons you can use easily for your next project.
Stars: ✭ 207 (+989.47%)
Mutual labels:  less, css3
Admin
react+koa实现登陆、聊天、留言板功能后台
Stars: ✭ 228 (+1100%)
Mutual labels:  less
Docs.influxdata.com Archive
ARCHIVE - 1.x docs for InfluxData
Stars: ✭ 234 (+1131.58%)
Mutual labels:  less
vuecli3-less-template
vuecli3+axios+vue-router+vuex项目通用模板,二次封装axios、预设less等,快速入手vuecli3
Stars: ✭ 33 (+73.68%)
Mutual labels:  less
nextjs-antd-custom
This project we created a simple project with Nextjs and use Ant Design for CSS components and also deploy that with Now.sh
Stars: ✭ 28 (+47.37%)
Mutual labels:  less
Octoprint Touchui
A touch friendly interface for a small TFT module or phone
Stars: ✭ 226 (+1089.47%)
Mutual labels:  less
dawai
Dawai — The Medicine Platform for Sudan 💊🇸🇩✨
Stars: ✭ 24 (+26.32%)
Mutual labels:  frontend-web
Material Colors
Colors of Google's Material Design made available to coders
Stars: ✭ 252 (+1226.32%)
Mutual labels:  less
A Journey Toward Better Style
A Journey toward better style
Stars: ✭ 245 (+1189.47%)
Mutual labels:  less
Vbuild
"Compile" your VueJS components (sfc/*.vue) to standalone html/js/css ... python only (no need of nodejs). Support python components too !
Stars: ✭ 236 (+1142.11%)
Mutual labels:  less
bioSyntax-archive
Syntax highlighting for computational biology
Stars: ✭ 16 (-15.79%)
Mutual labels:  less
Kit
ReactQL starter kit (use the CLI)
Stars: ✭ 232 (+1121.05%)
Mutual labels:  less
vue-node-mongodb-blog
vue + node + mongodb + webpack5 + koa2 从开发到上线搭建一款简约的个人博客系统(前后端分离)
Stars: ✭ 44 (+131.58%)
Mutual labels:  less
Monokai
Monokai Atom Syntax theme
Stars: ✭ 226 (+1089.47%)
Mutual labels:  less
website
Website source for Jikan.moe
Stars: ✭ 28 (+47.37%)
Mutual labels:  less
Reset Css
An unmodified* copy of Eric Meyer's CSS reset. PostCSS, webpack, Sass, and Less friendly.
Stars: ✭ 244 (+1184.21%)
Mutual labels:  less
Prejss
Get the power of PostCSS with plugins in your JSS styles. 🎨 Just put CSS into JS and get it as JSS object.
Stars: ✭ 238 (+1152.63%)
Mutual labels:  less
Vue Cli4 Vant
基于vue-cli4和vant搭建的移动端开发模板
Stars: ✭ 253 (+1231.58%)
Mutual labels:  less

CssLab

Homepage: http://csslab.cc

目录

简介说明

csslab是一个动态css依赖库,它由一些自定义函数组成,可快速书写一些常用的css片段并自动进行计算,同时提供一些IE6/7兼容hack和简写,以便能更快捷高效地完成网页重构工作。

Example.1 常见片段

例如,常见的让文本禁止换行,溢出的部分处理为显示“...”:

.textline{
    .nobreak;
}

//编译后输出为
.textline{
    white-space:nowrap;
    word-wrap:normal;
    word-break:keep-all;
    text-overflow:ellipsis;
    overflow:hidden;
}
Example.2 自动计算

例如,让一个已知尺寸的元素总是自动绝对居中定位:

.fixwindow{
    .size(400px,300px);
    .ct(400px,300px);
}

//编译后输出为
.fixwindow{
    width:400px;
    height:300px;
    position:absolute;
    left:50%;
    top:50%;
    margin-left:-200px;
    margin-top:-150px;
}
Example.3 动画调用

传入参数指定动画的时间,并且只有调用该动画时生成对应keyframes,不会因需使用动画库中一个定义帧而要引入全部内容或繁琐地剪切粘贴:

.animate-element{
    .fadeIn(2s);
}
//编译后输出为
//94900655为随机数
.animate-element{
  -webkit-animation-name: fadeIn_94900655;
          animation-name: fadeIn_94900655;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}
@keyframes fadeIn_94900655 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

使用指南

Step.1 安装支持环境

安装nodejs,并使用npm安装less/sass; 也可以使用koala等可视化编译器。 同时建议安装autoprefixer插件,以生成相应浏览器前缀。

Step.2 引入文件

将文件下载至指定工作目录,通过正确的路径引入。

//单独引入指定子函数库
@import url('base.less');
@import url('animation.less');

参考文档

  • base - 基础函数库,常用的IE6-IE8各类HACK,快捷书写函数
  • reset - 浏览器样式重置
  • shape - 使用CSS绘制常用的图形
  • animation - 基础动画库,提供常见的动画
  • twinkle - 扩展动画库
  • base-fix - 旧版base废弃函数(限芒果TV)(仅v3及v3版本以前)

其它链接

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].