码迷,mamicode.com
首页 > 其他好文 > 详细

less函数使用

时间:2017-02-23 22:57:42      阅读:218      评论:0      收藏:0      [点我收藏+]

标签: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="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函数使用

标签:less函数使用

原文地址:http://suyanzhu.blog.51cto.com/8050189/1900683

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!