0

此脚本的 html 由列表项 http://www.jeremymartin.name/projects.php?project=kwicks

我在哪里可以找到这样一个适用于 div 的脚本,这样我就可以使非活动图像更暗,而活动图像正常,就像你在这里看到的:
https ://www.bnpparibasfortis.be/portal/start.asp

4

1 回答 1

0

css opacity 使它变亮,而不是变暗,但我得到了解决方案,我在 kwicks 脚本中更改了规则 28

var kwicks = container.children('li'); 

var kwicks = container.children('div');

这是html:

<div style="background: url(thumb-58-madagascar.jpg) no-repeat scroll center top;">
    <div class="inactive"></div>
</div>

CSS:

div#accordion-slider{
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}
div#accordion-slider div{
    display: block;
    overflow: hidden;
    padding: 0;
    margin:0;
    float: left;
    width: 165px;
    background:none repeat scroll 0 0 rgba(0, 0, 0, 0.5);
    height: 230px;
}
div#accordion-slider div.inactive {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);
    height: 100%;
    position: absolute;
    width: 100%;
}
div#accordion-slider div.active div.inactive {
    background: none;
}
于 2012-06-29T08:22:39.607 回答