如何为带有动态值的CSS按钮使用calc()和var()?

时间:2018-11-20 13:19:16

标签: html css

我从GitHub获得了CSS光泽按钮代码。在CSS中,使用了三个固定的width.container-width: 140px.glossy-width: 120px.glossy:before-{{1} })来设计光泽效果按钮。按钮的宽度是固定的。是否可以为自定义文本自动计算width: 110px

下面是带有代码的代码段

width
.container {
  width: 140px;
  margin: 50px auto;
}

.glossy p {
  margin: 6px 0 0 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.glossy {
  width: 120px;
  height: 25px;
  margin: 10px auto;
  position: relative;
  background: #94c4fe;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(31%, #94c4fe), color-stop(100%, #d3f6fe));
  background: -webkit-linear-gradient(top, #94c4fe 31%, #d3f6fe 100%);
  background: -moz-linear-gradient(top, #94c4fe 31%, #d3f6fe 100%);
  background: -o-linear-gradient(top, #94c4fe 31%, #d3f6fe 100%);
  background: -ms-linear-gradient(top, #94c4fe 31%, #d3f6fe 100%);
  background: linear-gradient(to bottom, #94c4fe 31%, #d3f6fe 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#94c4fe', endColorstr='#d3f6fe', GradientType=0);
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  border: 1px solid #4864a9;
  color: #000;
  font-size: 0.750em;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, .5);
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, .2);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, .2);
  position: relative;
}

.glossy:before {
  content: "";
  width: 110px;
  height: 16px;
  display: block;
  position: absolute;
  left: 5px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.7) 8%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(8%, rgba(255, 255, 255, 0.7)), color-stop(100%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.7) 8%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.7) 8%, rgba(255, 255, 255, 0) 100%);
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.7) 8%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.7) 8%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff', GradientType=0);
}

1 个答案:

答案 0 :(得分:1)

这里完全不需要calcvar;只需停止使用固定大小的像素即可。

这使用inline-block而不是.glossy上的固定宽度来根据内容设置按钮宽度;它还设置了::before上的高亮显示以匹配容器的宽度,而不是完全不使用width(它已经是绝对位置了,因此,这只是添加一个left规则的问题以及right。)

我还删除了.container规则,因为它没有做与问题相关的任何事情,并删除了一堆不必要的或多余的规则,包括供厂商使用的前缀已久的规则。

.glossy p {
  margin: 6px 0 0 0;
  text-align: center;
}

.glossy {
  display: inline-block;
  padding: 0 25px;
  height: 25px;
  position: relative;
  background: linear-gradient(to bottom, #94c4fe 31%, #d3f6fe 100%);
  border-radius: 25px;
  border: 1px solid #4864a9;
  color: #000;
  font-size: 0.750em;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, .5);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, .2);
}

.glossy:before {
  content: "";
  height: 16px;
  position: absolute;
  right: 5px; left: 5px;
  border-radius: 8px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.7) 8%, rgba(255, 255, 255, 0) 100%);
}
<div class="glossy">
  <p>short</p>
</div>

<div class="glossy">
  <p>medium medium</p>
</div>

<div class="glossy">
  <p>long text long text long text long text</p>
</div>

高度仍然固定为特定的像素大小;它将需要更大量的重写来更正此问题,并且图形设计实际上并不能在其他高度发挥作用。