我正在website(早期阶段)工作,我在白色背景区域中应用背景交叉渐变时遇到严重困难(我想要一些图像)在背景上自动旋转,完全填充它。)
根据HTML代码,我应该可以在CSS中使用类.main-container,但这不会改变任何内容......
我真诚地感谢您的帮助,我在HTML + CSS中自学成才,我只需要指导您采取正确的步骤。
你会推荐什么?
非常感谢提前!
(更新)
我决定选择Tympanus.net解决方案。
对http://www.marcocarlo.com/mimosa/index.html
的执行情况很糟糕这是CSS代码:
.cb-slideshow,
.cb-slideshow:after {
position: absolute;
width: 100%;
height: 100%;
top: 0px;
left: 0px;
z-index: 0;
}
.cb-slideshow:after {
content: '';
background: transparent url(images/pattern.png) repeat top left;
background-size:cover;
}
.cb-slideshow li span {
width: 100%;
height: 100%;
position: absolute;
top: 0px;
left: 0px;
color: transparent;
background-size: cover;
background-position: 50% 50%;
background-repeat: none;
opacity: 0;
z-index: 0;
-webkit-backface-visibility: hidden;
-webkit-animation: imageAnimation 36s linear infinite 0s;
-moz-animation: imageAnimation 36s linear infinite 0s;
-o-animation: imageAnimation 36s linear infinite 0s;
-ms-animation: imageAnimation 36s linear infinite 0s;
animation: imageAnimation 36s linear infinite 0s;
}
.cb-slideshow li div {
z-index: 1000;
position: absolute;
bottom: 30px;
left: 0px;
width: 100%;
text-align: center;
opacity: 0;
color: #fff;
-webkit-animation: titleAnimation 18s linear infinite 0s;
-moz-animation: titleAnimation 18s linear infinite 0s;
-o-animation: titleAnimation 18s linear infinite 0s;
-ms-animation: titleAnimation 18s linear infinite 0s;
animation: titleAnimation 18s linear infinite 0s;
}
我该怎么办才能在白色背景区域展示它(完全覆盖它?)
非常感谢提前!
答案 0 :(得分:0)
您可以尝试寻找一些existing guides。或者也许寻找一些具有交叉渐变过渡的现有图像滑块。如果您愿意编写自己的交叉淡入淡出,可以使用background-size: cover
填充整个区域(example)