我正在使用 jQuery 插件 plax:https ://github.com/cameronmcefee/plax
我已经做了我自己的例子,并希望它能够响应。现在位置在 css 中的移动元素上是绝对的,但我需要它是相对的,所以我可以让它响应。
但我无法让它工作
看我的小提琴:http: //jsfiddle.net/FfKgY/
我认为问题出在css上:
#shell {
display: block;
position: relative;
margin: 100px auto;
width: 100%;
max-width: 318px;
height: 100%;
max-height: 318px;
z-index: 1;
}
#plax-logo {
width: 136px;
height: 70px;
position: absolute;
top: 170px;
left: 90px;
z-index: 3;
background:#099;
}
#plax-sphere-1 {
width: 93px;
height: 92px;
position: absolute;
z-index: 4;
top: 189px;
left: 191px;
background: #3CC;
}
#plax-sphere-2 {
width: 215px;
height: 215px;
position: absolute;
z-index: 2;
top: 100px;
left: 53px;
background: #3C9;
}
#plax-sphere-3 {
width: 93px;
height: 92px;
position: absolute;
top: 35px;
left: 32px;
z-index: 1;
background: #669;
}