Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/431.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/jquery/79.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 如何混合颜色变化_Javascript_Jquery_Html_Css - Fatal编程技术网

Javascript 如何混合颜色变化

Javascript 如何混合颜色变化,javascript,jquery,html,css,Javascript,Jquery,Html,Css,我有两个不同的div,一个是图像,另一个是纯色。我如何混合它们,使变化不明显 HTML: 因为我的帖子主要是代码: 更多细节 更多细节 更多细节 更多细节 更多细节 更多细节您可以使用CSS渐变,配置为第一部分为实心,其余部分为过渡 /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0.7+48,0+100 *

我有两个不同的div,一个是图像,另一个是纯色。我如何混合它们,使变化不明显

HTML:

因为我的帖子主要是代码: 更多细节 更多细节 更多细节 更多细节 更多细节
更多细节

您可以使用CSS渐变,配置为第一部分为实心,其余部分为过渡

/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0.7+48,0+100 */
background: -moz-linear-gradient(top, rgba(30,87,153,1) 0%, rgba(76,134,191,0.7) 48%, rgba(125,185,232,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,87,153,1)), color-stop(48%,rgba(76,134,191,0.7)), color-stop(100%,rgba(125,185,232,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(30,87,153,1) 0%,rgba(76,134,191,0.7) 48%,rgba(125,185,232,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(30,87,153,1) 0%,rgba(76,134,191,0.7) 48%,rgba(125,185,232,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(30,87,153,1) 0%,rgba(76,134,191,0.7) 48%,rgba(125,185,232,0) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(30,87,153,1) 0%,rgba(76,134,191,0.7) 48%,rgba(125,185,232,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#007db9e8',GradientType=0 ); /* IE6-9 */

也有CSS混合模式,但支持不同

@A Morris查看CSS的
混合模式
属性
.content1 {
  background-image: url("http://www.thefreeloves.com/prototype/test/wp-content/uploads/2014/02/album-title.jpg");
  color: white;
  text-align: center;
  width: 100%;
  height: 20%;
  display: block;
  float: left;
}

.text1 {
  font-family: "Goudy Old Style", Optima, sans-serif;
  font-size: 40px;
  margin-bottom: 0;
  margin-top: 45px;
}

.text2 {
  font-size: 30px;
  color: #6CB9D9;
}


.album1 {
  float: left;
  display: inline-block;
  width: 31%;
  text-align: center;
  margin-right: 35px;
  margin-left: 25px;
  opacity: 1;
  transition: opacity 0.3s ease-in;
}

.album1:hover {
  opacity: 0.5;
  transition: opacity 0.3s ease-in;
}

.album2{
  display: inline-block;
  width: 31%;
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s ease-in;
}

.album2:hover {
  opacity: 0.5;
  transition: opacity 0.3s ease-in;
}

.album3 {
  float: right;
  display: inline-block;
  width: 31%;
  text-align: center;
  margin-left: 20px;
  margin-right: 20px;
  opacity: 1;
  transition: opacity 0.3s ease-in;
}

.album3:hover {
  opacity: 0.5;
  transition: opacity 0.3s ease-in;
}

.album {
  width: 100%;
  overflow: hidden;
  background-color: #191919;
}

.album img {
  width: 100%;
}
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,0.7+48,0+100 */
background: -moz-linear-gradient(top, rgba(30,87,153,1) 0%, rgba(76,134,191,0.7) 48%, rgba(125,185,232,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,87,153,1)), color-stop(48%,rgba(76,134,191,0.7)), color-stop(100%,rgba(125,185,232,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(30,87,153,1) 0%,rgba(76,134,191,0.7) 48%,rgba(125,185,232,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(30,87,153,1) 0%,rgba(76,134,191,0.7) 48%,rgba(125,185,232,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(30,87,153,1) 0%,rgba(76,134,191,0.7) 48%,rgba(125,185,232,0) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(30,87,153,1) 0%,rgba(76,134,191,0.7) 48%,rgba(125,185,232,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#007db9e8',GradientType=0 ); /* IE6-9 */