在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
CSS不像其它高级语言一样支持算术运算、变量、流程控制与面向对象特性,所以CSS样式较多时会引起一些问题,如修改复杂,冗余,某些别的语言很简单的功能实现不了等。而javascript则是一种半面向对象的动态语言,有java的影子,有C的味道,中间有比其它语言多的糟粕,使用预处理办法可以解决这些问题。其中Less[les]与Sass是CSS的预处理技术,而CoffeeScript、TypeScript则是javascript的预处理技术。 1.1、概要Less是一种动态样式语言,Less 是一门 CSS 预处理语言,它扩展了 CSS 语言,增加了变量、Mixin、函数等特性,使 CSS 更易维护和扩展。 Less 将 CSS 赋予了动态语言的特性,如 变量, 继承, 运算, 函数。LESS 既可以在 客户端 上运行 (支持IE 6+, Webkit, Firefox),也可以借助Node.js或者Rhino在服务端运行。 Less是一个JS库,所以他可以在客户端运行,相对Sass则必须在服务端借助Ruby运行 中文网站: http://www.lesscss.net/ 英文官网: http://lesscss.org less源码: https://github.com/cloudhead/less.js github地址: https://github.com/less/less.js 1.2、变量语法:@变量名:值; 1)、以@作为变量的起始标识,变量名由字母、数字、_和-组成 @color: #4d926f; #header { color: @color; } #header { color: #4d926f; } @color: #253636; @color: #ff3636; //覆盖第一次的定义 #header {color: @color;} //多次反复解析 #header {color: #ff3636;} 编译后: #header { color: #ff3636; } #header { color: #4d926f; } #header { color: #ff3636; } #header { color: #ff3636; } 1.3、解析Less1.3.1、在线处理页面中直接引用less的源码,使用javascript动态翻译,这样在开发阶段非常方便,但是在运行阶段会影响效率,建议在开发阶段使用less.js在线处理,项目稳定运行时将less文件预处理。 步骤一: 下载到less.js动态处理.less文件的javascript脚本,下载地址: https://github.com/less/less.js 步骤二: 在页面中引入样式与less.js文件,如下: <link rel="stylesheet/less" type="text/css" href="styles.less"> <script src="less.js" type="text/javascript"></script> 测试运行 示例代码: style1.less /*1定义变量*/ @color:red; @bgColor:lightgreen; /*定义变量color,值为red*/ .cls11{ color: @color; } @color:lightblue; /*重新定义,覆盖前面的定义,后定义的起作用*/ .cls12 { background: @bgColor; border: 2px solid @color; } de2.html <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Less</title> <link rel="stylesheet/less" type="text/css" href="css/style1.less"> <script src="js/less/less.min.js" type="text/javascript"></script> </head> <body> <div id="div1" class="cls12"> Hello Less </div> </body> </html> 运行效果:
从上图可以看出less.js将style1.less文件翻译后变成了一个标准的CSS内部样式表。 1.3.2、预处理在线处理的效率低,预处理就是将less文件先翻译成标准的CSS文件,再引入到项目中,处理的办法有许多: 方法一:使用lessc a)、请先在电脑上安装node.js,下载地址: https://nodejs.org/en/ a)、安装lessc 使用npm(node.js package management)node.js包管理器 在命令行模式下输入安装指令:npm install less -g 使用lessc翻译less文件为css文件: lessc styles.less > styles.css 生成文件 参数 –x 普通压缩 参数 -h 帮助 -x的压缩方法已经被弃用,建议使用清理插件。 方法二:使用工具软件 能够翻译Less的工具软件有不少,这里介绍:Koala Koala是一个开源的预处理语言图形编译工具,目前已支持Less、Sass、Compass与CoffeeScript。 下载地址: http://koala-app.com/ 注意:路径中不要使用中文,切记! 方法三:使用IDE插件 如果使用Eclipse,Hbuilder,Visual Studio等开发工具可以安装插件完成自动翻译功能,这里使用HBuilder,在工具->插件下可以选择安装,如下图所示:
使用方法: 新建Less文件,保存后会自己生成对应的CSS文件。 1.4、混入(Mixins)类似函数或宏 定义函数,@radius是参数,3px是默认值 .borderRadius(@radius:3px){ -moz-border-radius: @radius; } 使用函数,带参数 #header { .borderRadius(10px); } 不带参数使用默认参数 注意: a)、可以不使用参数 .wrap(){…} .pre{ .wrap },也可以使用多个参数 注意,在参数没有默认值的前提下使用@arguments调用时必须赋值,否则会导致整个页面内的less语法出错而失效。 Less示例代码: /*混入(Mixins)*/ /*定义*/ .circle(@width:100px, @color:lightblue) { width: @width; height: @width; background: @color; border-radius: @width/2; float: left; } .boxShadow(@x:0, @y:0, @blur:1px, @color:#000) { box-shadow: @arguments; } /*调用*/ .cls21 { .circle(); /*默认值*/ } .cls22 { .circle(200px,lightgreen); /*带参数*/ .boxShadow(5px,5px); } .cls23 { .circle(300px); /*带一个参数*/ } HTML页面: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Less</title> <link rel="stylesheet" type="text/css" href="css/style2.css" /> </head> <body> <div id="div1" class="cls21"> </div> <div id="div1" class="cls22"> </div> <div id="div1" class="cls23"> </div> </body> </html> 翻译结果: /*调用*/ .cls21 { width: 100px; height: 100px; background: lightblue; border-radius: 50px; float: left;/*默认值*/ } .cls22 { width: 200px; height: 200px; background: lightgreen; border-radius: 100px; float: left; /*带参数*/ box-shadow: 5px 5px 1px #000; } .cls23 { width: 300px; height: 300px; background: lightblue; border-radius: 150px; float: left;/*带一个参数*/ } /*# sourceMappingURL=style2.css.map */ 运行效果: 1.5、嵌套允许将多个CSS选择器嵌套在一起,&表示当前选择器的父选择器 #header { 示例: /*嵌套*/ #parent { color: red; .sub11 { background: green; } &.sub12 { width: 100px; } .sub13 { height: 200px; .sub131 { font-size: 10px; } } } 结果: /*嵌套*/ #parent { color: red; } #parent .sub11 { background: green; } #parent.sub12 { width: 100px; } #parent .sub13 { height: 200px; } #parent .sub13 .sub131 { font-size: 10px; } 1.6、运算运算主要是针对任何数字、颜色、变量的操作,支持加、减、乘、除、()或者更复杂的综合运算; @init: #111111; 算术运算示例: /*运算*/ @base: 5%; @filler: @base * 2; @other: @base + @filler; @base-color:lightblue; .cls41{ color: #888 / 4; background-color: @base-color + #111; height: 100% / 2 + @filler; } 运行结果: .cls41 { color: #222222; background-color: #bee9f7; height: 60%; } 1.7、函数Less 提供了许多用于转换颜色,处理字符串和进行算术运算的函数 .lightColor{lighten(@color, 10%); } 更多函数: http://www.lesscss.net/functions/ 示例: /*函数*/ .cls51 { /*将一个资源内嵌到样式文件,如果开启了ieCompat选项,而且资源文件的体积过大,或者是在浏览器中使用,则会使用url()进行回退。如果没有指定MIME,则Node.js会使用MIME包来决定正确的MIME。*/ background: data-uri('../img/yes.gif') no-repeat; height: 20px; } .cls52 { /*增加一定数值的颜色亮度。*/ background: lighten(blue,20%); } 翻译结果: /*函数*/ .cls51 { /*将一个资源内嵌到样式文件,如果开启了ieCompat选项,而且资源文件的体积过大,或者是在浏览器中使用,则会使用url()进行回退。如果没有指定MIME,则Node.js会使用MIME包来决定正确的MIME。*/ background: url("data:null;base64,R0lGODlhDAAMAKIAAMznjyJ6Gu732TKGFq7ZTF+nDI7JBf///yH5BAAAAAAALAAAAAAMAAwAAAM8eCdAZgQItdy7RAlXyhidBhjdEAQD1ZDHGVDQUyivMlws1d6xR6EFyKi06xgkHA8oSJhscI8mhWGJTA4JADs=") no-repeat; height: 20px; } .cls52 { /*增加一定数值的颜色亮度。*/ background: #6666ff; } 运行效果: 1.8、继承示例代码: /*继承*/ .animal { background-color: black; color: white; } .bear { &:extend(.animal); background-color: brown; } .mouse{ &:extend(.animal); } 翻译结果: /*继承*/ .animal, .bear, .mouse { background-color: black; color: white; } .bear { background-color: brown; } 1.9、作用域同一级的变量后者覆盖前者,内部变量优先级高于外部变量,变量只在同一个文件中生效。 示例: /*作用域*/ @len:10px; .cls61{ @len:20px; height:@len; } .cls62{ width:@len; } @len:30px; .cls63{ height: @len; } 结果: .cls61 { height: 20px; } .cls62 { width: 30px; } .cls63 { height: 30px; } 1.10、注释示例: /*注释*/ .cls71{ width: 100px; //单行注释,CSS中不允许单行注释,Less允许 height:100px; /* 多行注释,CSS与Less都允许 */ } 结果: /*注释*/ .cls71 { width: 100px; height: 100px;/* 多行注释,CSS与Less都允许 */ } 二、SassSass与Less类似类似也是一种CSS的预编译语言,他出现的更晚,但功能更加强大,Sass 有两种语法。 第一种被称为 SCSS (Sassy CSS),是一个 CSS3 语法的扩充版本;第二种比较老的语法成为缩排语法(或者就称为 "Sass"), 提供了一种更简洁的 CSS 书写方式特点如下: 特点: 1)、不能直接在页面中解析,需要使用ruby预先翻译成css文件,而Less可以在线动态翻译。 2)、Sass功能更加强大,拥有流控语句等Less不具备的功能 3)、完全兼容 CSS3,在 CSS 语言基础上添加了扩展功能,比如变量、嵌套 (nesting)、混合 (mixin) 在使用时Sass的后缀名为scss,本文全部使用scss的语法,可以安装Koala直接解析,不需要去搭建ruby环境,Koala已封装好。 下载地址: http://koala-app.com/ 2.1、变量sass中可以定义变量,方便统一修改和维护 Sass代码: /*变量*/ $width:1004px; $color:blue; .cls11 { width: $width; height: $width/2; background: $color; } $width:100px; $color:red; .cls12 { $color:green; width: $width; height: $width/2; background: $color; } CSS代码: .cls11 { width: 1004px; height: 502px; background: blue; } .cls12 { width: 100px; height: 50px; background: green; } 2.2、嵌套sass可以进行选择器的嵌套,表示层级关系,看起来很优雅整齐。 .cls21 { width: 100px; .cls22{ height: 200px; } .cls23 { color:blue; } } CSS代码: .cls21 { width: 100px; } .cls21 .cls22 { height: 200px; } .cls21 .cls23 { color: blue; } 2.3、导入sass中如导入其他sass文件,最后编译为一个css文件,优于纯css的@import $zero:0; $PI:3.14; * { margin: $zero; padding: $zero; } body,html{ height: 100%; } Sass代码: @import "reset"; .cls31 { /*height: zero; */ /*error*/ } CSS代码: * { margin: 0; padding: 0; } body, html { height: 100%; } .cls31 { /*height: zero; */ /*error*/ } 2.4、mixin 混入sass中可用mixin定义一些代码片段,且可传参数,方便日后根据需求调用。从此处理css3的前缀兼容轻松便捷。定义时使用关键字@mixin,调用时使用@include SCSS样式: @mixin circle($size:100px,$color:lightblue){ width: $size; height: $size; border-radius: $size/2; background: $color; } .cls41{ @include circle(); } .cls42{ @include circle(150px); } .cls43{ @include circle(200px,lightgreen); } CSS样式: .cls41 { width: 100px; height: 100px; border-radius: 50px; background: lightblue; } .cls42 { width: 150px; height: 150px; border-radius: 75px; background: lightblue; } .cls43 { width: 200px; height: 200px; border-radius: 100px; background: lightgreen; } 2.5、扩展/继承sass可通过@extend来实现代码组合声明,使代码更加优越简洁。 SCSS样式: .state { background: blue; border: 1px solid lightblue; } .success{ @extend .state; background: green; } .error { @extend .state; border: 2px solid red; } CSS样式: .state, .success, .error { background: blue; border: 1px solid lightblue; } .success { background: green; } .error { border: 2px solid red; } 2.6、运算SCSS样式: .cls61 { width: (100px+10px)/2-20px%7px+1px*8; } CSS样式: .cls61 { width: 57px; } 2.7、函数sass中集成了大量的颜色函数,让变换颜色更加简单。 SCSS样式: $pcolor: #999ccc; .cls71 a { color: $pcolor; &:hover { background: darken($pcolor,15%); /*变暗15%*/ color: lighten($pcolor,5%); /*变亮5%*/ } CSS样式: .cls71 a { color: #999ccc; } .cls71 a:hover { background: #666bb3; color: #aaacd5; } 2.8、流程控制sass中和其它程序语言一样也拥有流程控制语句,如if,for,each,while,指令,函数等。 SCSS样式: $blur: lightblue; @for $i from 1 through 10 { .font-#{$i} { /*计算字体大小*/ font-size: 12px+$i*2px; /*颜色变暗*/ color: darken($blur,$i*2); /*如果i是3的倍数,则下划线*/ @if $i%3==0 { text-decoration: underline; } } } CSS样式: /*8*/ .font-1 { font-size: 14px; color: #a5d4e4; } .font-2 { font-size: 16px; color: #9dd1e1; } .font-3 { font-size: 18px; color: #96cddf; text-decoration: underline; } .font-4 { font-size: 20px; color: #8ec9dc; } .font-5 { font-size: 22px; color: #86c5da; } .font-6 { font-size: 24px; color: #7ec2d8; text-decoration: underline; } .font-7 { font-size: 26px; color: #76bed5; } .font-8 { font-size: 28px; color: #6ebad3; } .font-9 { font-size: 30px; color: #67b7d1; text-decoration: underline; } .font-10 { font-size: 32px; color: #5fb3ce; } HTML页面: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <link rel="stylesheet" type="text/css" href="css/style3.css" /> </head> <body style="padding: 10px;"> <div class="font-1">Hello SASS!</div> <div class="font-2">Hello SASS!</div> <div class="font-3">Hello SASS!</div> <div class="font-4">Hello SASS!</div> <div class="font-5">Hello SASS!</div> <div class="font-6">Hello SASS!</div> <div class="font-7">Hello SASS!</div> <div class="font-8">Hello SASS!</div> <div class="font-9">Hello SASS!</div> <div class="font-10">Hello SASS!</div> </body> </html> 运行效果: 更多内容请参考:http://www.sass-zh.com/ 三、CoffeeScriptjavascript变得日益重要,但有很多明显的缺点,借助一种中间语言转译出优雅的javascript是解决这些问题的方法。如CoffeeScript,TypeScript。 Coffee Script是JavaScript的转译语言。了解JavaScript的发展历程:https://news.cnblogs.com/n/558565/。 Coffee的特点: 更少,更紧凑,和更清晰的代码 中文网: http://coffee-script.org/ 源码:https://github.com/coffee-js/coffee-script 3.1、安装CoffeeScript 编译器本身是 CoffeeScript 写的, 使用了 Jison parser generator. 命令行版本的coffee是一个实用的 Node.js 工具。 安装前你需要最新稳定版 Node.js, 和 npm (Node Package Manager)。借助 npm 可以安装 CoffeeScript: npm install -g coffee-script 安装之后, 你应该可以运行 coffee 命令以执行脚本, 编译 .coffee 文件到 .js 文件, 和提供一个交互式的 REPL. coffee 命令有下列参数: 3.2、使用1、编辑coffee脚本,后缀为coffee,代码如下: # 赋值: number = 42 opposite = true # 条件: number = -42 if opposite # 函数: square = (x) -> x * x # 数组: list = [1, 2, 3, 4, 5] # 对象: math = root: Math.sqrt square: square cube: (x) -> x * square x # Splats: race = (winner, runners...) -> print winner, runners # 存在性: alert "I knew it!" if elvis? # 数组 推导(comprehensions): cubes = (math.cube num for num in list) 将coffeescript翻译成javascript的方法如下: a)、使用IDE插件直接翻译 翻译成javascript后的脚本如下: (function() { var cubes, list, math, num, number, opposite, race, square, slice = [].slice; number = 42; opposite = true; if (opposite) { number = -42 全部评论
专题导读
上一篇:typescript参照C#/java/swift学习小结发布时间:2022-07-18下一篇:TKoa 1.0.1 发布,TypeScript 版的 Node.js Koa 框架发布时间:2022-07-18热门推荐
热门话题
阅读排行榜
|
请发表评论