Я поместил следующую CSS-маску div на ползунок изображения.
<div class="contentMaskWrapper" >
<div class="contentMaskLeft"></div>
<div class="contentMaskRight"></div>
</div>
<div id="slider">
slider content
</div>
.contentMaskWrapper{
width:100%;
overflow:hidden;
position:absolute;
z-index:3;
height:564px;
}
.contentMaskLeft{
background:url(../images/mask.png) repeat;
height:564px;
width:100%;
position:absolute;
left:50%;
margin-left:425px;
z-index:999;
}
.contentMaskRight{
background:url(../images/mask.png) repeat;
height:564px;
width:100%;
position:absolute;
right:50%;
margin-right:425px;
z-index:999;
}
#slider{
width:850px;
height:564px;
margin:0 auto 20px;
position:relative;
clear:both;
overflow:hidden;
width:100%; }
Маска, отображаемая правильно, располагается по обе стороны от ползунка изображения. Слайдер имеет ссылку, и эта ссылка работает только в IE (7+), а не в FF, Safari или Chrome (Mac или PC).
Надеюсь, это имеет смысл. Пожалуйста, дайте мне знать, если вам нужно больше информации. Ценю любую помощь.
Спасибо,
Джейми