less函数使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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运算和函数

使用从循环内的代码片段中提取的函数避免代码冗余/计算开销

Less学习笔记

Less

浅谈less

嵌套调用less函数时参数值的变化及提取部分-遁地龙卷风