半透明背景的推拉门技术?

时间:2012-10-09 07:22:51

标签: css css3

我正在制作一个外观光滑的按钮。按钮可以有各种颜色和大小。这就是我到目前为止所做的:

.btn-zen-inverse, .btn-zen-inverse:hover{
    color: white;
    background: 
    url("../img/btn_right.png") no-repeat right 0,
    url("../img/btn_left.png") no-repeat  left 0,
    url("../img/btn_center.png") repeat-x 42px 0;
  background-color: #273032;
  background-size: contain; 
  line-height: 50px;
  margin: 12px 18px 3px 0;
  padding: 0;
  border: 2px solid white !important;
}

引用的图像是alpha透明的。我们的想法是根据background-color属性设置颜色。图像还有一些其他属性,但这些仅仅是estetic。

这个ofcorse呈现的图像看起来像这样! 我希望中心图像仅在图像的中心部分可见。正如你从我的CSS中看到的那样。这只需要在最新版本的4大浏览器中正常工作。

enter image description here

这就是我想要的样子:

enter image description here

一个建议是用背景渐变来做到这一点。如果可能,我需要类似于填充/边距工作方式定义背景位置。这可能吗?

该设计包含: 2个边界:   一个白色   一个渐变, 背景渐变。 在最顶部有一个1px厚的垂直渐变。

2 个答案:

答案 0 :(得分:2)

这与我仅使用CSS的距离更近。

请注意,IE8不支持多个背景。以下代码也不是,但至少你不需要图像。

button preview

Live demo

HTML:

<a class="button dark" href="#"><span>Prova Zenconomy Gratis</span></a>

CSS:

.button {
    display:inline-block;
    border:2px solid;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
    line-height:40px;
    text-decoration:none;
    font-family:Helvetica,Arial,sans-serif;
    -webkit-box-shadow: 0 0 4px 1px rgba(204, 204, 204, 0.7);
    -moz-box-shadow: 0 0 4px 1px rgba(204, 204, 204, 0.7);
    box-shadow: 0 0 4px 1px rgba(204, 204, 204, 0.7);
}
.button > span {
    padding:0 40px;
    display:block;
    border:3px solid;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
}
.button.dark {
    border-color:#FFF;
    color:#FFF;
    background:#030303;
}
.button.dark > span {
    border-color:#000;
    -webkit-box-shadow: inset 0 3px 5px -1px rgba(255,255,255,0.3);
    -moz-box-shadow: inset 0 3px 5px -1px rgba(255,255,255,0.3);
    box-shadow: inset 0 3px 5px -1px rgba(255,255,255,0.3);
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjMiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
    background: -moz-linear-gradient(top, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.3)), color-stop(100%,rgba(255,255,255,0)));
    background: -webkit-linear-gradient(top, rgba(255,255,255,0.3) 0%,rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(top, rgba(255,255,255,0.3) 0%,rgba(255,255,255,0) 100%);
    background: -ms-linear-gradient(top, rgba(255,255,255,0.3) 0%,rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0.3) 0%,rgba(255,255,255,0) 100%);
}

有两个类(布局为.button,颜色和渐变为.dark,因此您可以在页面中使用不同类型的按钮。

答案 1 :(得分:0)

check this code作为您查询的解决方案。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>

<style type="text/css">
    .btn-zen-inverse, .btn-zen-inverse:hover{
    color:#fff;
    background: 
    url("https://lh4.googleusercontent.com/-V_jjGSjquMg/UHPqq7_FfvI/AAAAAAAAA6s/fK5QEHGzC9I/s128/left.png") no-repeat right 0,
    url("https://lh4.googleusercontent.com/-V_jjGSjquMg/UHPqq7_FfvI/AAAAAAAAA6s/fK5QEHGzC9I/s128/left.png") no-repeat  left 0,
    url("https://lh3.googleusercontent.com/-JgxTtVru7R8/UHPqq1RgAII/AAAAAAAAA6o/gmfFayABGfQ/s128/center.png") repeat-x 42px 0;
  background-color: #ff09f9;
  background-size: contain; 
  line-height: 50px;
  margin: 12px 18px 3px 0;
  padding: 0;
  border: 2px solid white !important;
  text-align:center
}

</style>

</head>

<body>
<div class="btn-zen-inverse">Content</div>
</body>
</html>