codecamp

Less 函数

描述

本节介绍了 Less 中函数的使用。

LESS 映射具有值操作的 JavaScript 代码,并使用预定义的函数来操纵样式表中的 HTML 元素。 它提供了操作颜色的几个功能,如圆函数,floor 函数,ceil 函数,百分比函数等。


例子

下面的例子演示了在 LESS 文件中使用函数:

<html>
<head>
   <title>Less Functions</title>
   <link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
   <h1>Example using Functions</h1>
   <p class="mycolor">LESS enables customizable, manageable and reusable style sheet for web site.</p>
</body>
</html>


接下来,创建文件 style.less 。

style.less

@color: #FF8000;
@width:1.0;
.mycolor{
color: @color;
 width: percentage(@width);
}


您可以使用以下命令将 style.less 文件编译为 style.css :

lessc style.less style.css



接下来执行上面的命令,它将用下面的代码自动创建 style.css 文件:

style.css

.mycolor {
  color: #FF8000;
  width: 100%;
}


输出

让我们执行以下步骤,看看上面的代码如何工作:

  • 将上述 html 代码保存在 functions.html 文件中。

  • 在浏览器中打开此 HTML 文件,将显示如下输出。





Less 转义
Less 命名空间和访问器
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Less 基本教程

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }