改变液体滑块的颜色

时间:2014-02-26 18:34:36

标签: jquery html css

我将LiquidSlider实施到我正在开发的网站中。它完美无瑕,但我确实有一个问题似乎无法找到答案。

我可以更改背景颜色吗?我拥有它的div是灰色的,我想要将背景颜色更改为相同的颜色或只是使其透明。我该怎么做?

这是我到目前为止所尝试的

 .ls-wrapper {
    background-color:transparent;
  margin:0 auto;
  /* Do not edit below this line */
  clear: both;
  overflow: auto;
  position: relative;
}

/******************************************************
* Main Container
* This is the main container (minus the navigation).
* Be sure to match the width with the .panel class, 
* or it won't work properly. Also, width only applies
* if you are not using the responsive setting.
*
* The responsive slider will interpret the width as the
* max width instead
*******************************************************/
.ls-wrapper .liquid-slider {
  background-color:transparent;
  width: 1030px;
  /* Do not edit below this line */
  float: left;
  overflow: hidden;
  position: relative;

1 个答案:

答案 0 :(得分:1)

如果将这两个设置为透明,则可以正常工作。

.panel
{
    background: transparent;
}

.liquid-slider
{
    background: transparent;
}

.panel是每张幻灯片的背景。

.liquid-slider是整个滑块的背景。

他们也是border-color设置到每个面板,您可以border-color: transparent添加.panel以清除此内容。