사이클 플러그인의 z 인덱스를 사용 : 여기
이 부문의 CSS입니다. 주기 플러그인 코드에서 :
// set position and zIndex on all the slides
$slides.css({position: 'absolute', top:0, left:0}).hide().each(function(i) {
var z;
if (opts.backwards)
z = first ? i <= first ? els.length + (i-first) : first-i : els.length-i;
else
z = first ? i >= first ? els.length - (i-first) : first-i : els.length-i;
$(this).css('z-index', z)
});
나는 "웨이브"의 Z- 인덱스로 게임을하고 도움이되지 않는지 확인합니다.
#wave {
width: 970px;
height: 40px;
position: absolute;
left: 0;
bottom: 0;
background: url(../img/wave.png) no-repeat bottom left;
z-index: 99;
}
? 모든 브라우저 나 하나를 볼? – Sparky
'Z-index' 변경? – Orbling
을 http://dpaste.com/634461/ – tejinderss