码迷,mamicode.com
首页 > Web开发 > 详细

Css 变量

时间:2017-06-21 15:58:44      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:更新   ogr   str   惊奇   bar   加载   宽度   nts   ima   

之前从来没有这样用过,感觉也是很惊奇啊,像less“变量”一样;

.Variables{
  --color:red;
  background: var(--color);
  width: 100px;
  height: 50px;
}
<div class=‘Variables‘></div>

 

.button-gradient {
  background: linear-gradient(var(--gradientAngle), var(--gradientStart),var(--gradientStop));

  --gradientAngle: 60deg;
  --gradientStart: lightpink;
  --gradientStop: lightyellow;
  height: 50px;
  width: 200px;
  line-height: 50px;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

.button-gradient:hover {
  --gradientAngle: 0deg;
}

<div class=‘button-gradient‘>Gradient Button</div>

 

 

// Variables
:root {
  --primaryColor: lightgreen;
  --buttonBgColor: var(--primaryColor);
}

.button {
  background: var(--buttonBgColor);
}

.button--blue {
  --buttonBgColor: lightblue;
}
.btn{
  height: 50px;
  width:100px;
  margin: 10px;
}

<div class=‘button btn‘></div>
<div class=‘button--blue btn‘></div>

如果我想更新加载器栏的宽度来表示加载时间的百分比,我可以这样做:

function calculateLoadProgress() { let loadProgress = 0; // codes to update loadProgress here return loadProgress; } // Set width of progress bar document.documentElement.style.setProperty(‘--progressBarWidth‘, calculateLoadProgress());

Css 变量

标签:更新   ogr   str   惊奇   bar   加载   宽度   nts   ima   

原文地址:http://www.cnblogs.com/peiyao/p/7059868.html

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