首页 > 代码库 > less函数使用
less函数使用
示例
.rounded-corners(@radius:5px){ -webkit-border-radius: @radius; -moz-border-radius: @radius; -ms-border-radius: @radius; -o-border-radius: @radius; border-radius:@radius; } #header { .rounded-corners; } #footer { .rounded-corners(10px); }
说明
.rounded-corners表示函数名 (@radius:5px)表示函数的参数 { -webkit-border-radius: @radius; -moz-border-radius: @radius; -ms-border-radius: @radius; -o-border-radius: @radius; border-radius:@radius; }表示函数体也就是内容 #header { .rounded-corners; }表示调用函数使用默认参数5px #footer { .rounded-corners(10px); }表示调用函数并给函数传递参数
语法
函数名(参数){ 函数体 }
生成的css文件(example2.css)
#header { -webkit-border-radius: 5px; -moz-border-radius: 5px; -ms-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; } #footer { -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; -o-border-radius: 10px; border-radius: 10px; }
在html中使用css(less2.html)
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>less2</title> <link rel="stylesheet" href="http://www.mamicode.com/example2.css"> <style> div{ width: 100px; height: 100px; border: 1px solid #ccc; } </style> </head> <body> <div id="header"></div> <div id="footer"></div> </body> </html>
本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1900683
less函数使用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。