我正在创建一个具有恒星js的视差站点,我在“幻灯片”中定位元素时遇到了严重问题。我的所有元素都与给定的css完全一致;然而,只要我为图像添加“数据 - 恒星比”属性,它们的位置就完全搞砸了。螺旋偏移没有明显的模式,或者我只是调整css。
这是我的HTML
<body>
<div id="scrollContainer">
<div id="scroller">
<section data-slide="1" class="slide" id="slide1" > <!-- Home Screen -->
<img class="part" data-stellar-ratio="1.5" src="images/vi.svg" alt="">
<img class="part" data-stellar-ratio="2" src="images/nyl.svg" alt="">
<img class="part" data-stellar-ratio="3" src="images/vibe.svg" alt="">
<img class="part" data-stellar-ratio="2.5" src="images/whitaker.svg" alt="">
<img class="part" data-stellar-ratio="1" src="images/red.svg" alt="">
</section> <!-- END Home -->
每个“section.slide”设置为“position:relative;”并且子图像设置为绝对。这是我的CSS
#scroller
{
text-align: left;
width: 960px;
margin: 0 auto;
padding:0;
}
section.slide { position:relative; width:960px; height: 728px;}
.part { position:absolute; }
section#slide1 {background: #f2f2f2; width:100%;}
section#slide1 .part:first-child { width:524px; left:-297px; top:715px; } /* vi */
section#slide1 .part:nth-child(2) { width:780px; left:159px; top:1072px; /*bottom:-344px;*/} /* nyl */
section#slide1 .part:nth-child(3) { width:395px; left:357px; top: 525px; /*bottom:203px;*/ } /*vibe*/
section#slide1 .part:nth-child(4) { width:641px; left:599px; top: 590px; /*bottom:138px;*/ } /*whitaker*/
section#slide1 .part:nth-child(5) { width:424px; left:28px; top: 842px; /*bottom:-114px;*/ } /*red*/
有谁知道合适的解决方案?谢谢你的帮助!!我已经在这里工作了3个小时,并且没有通过试验找到解决方案,也没有在网上找到一个解决方案。
答案 0 :(得分:1)
我无法确定,但我想我只是通过添加 horizontalScrolling:false 来解决这个问题。
$.stellar({
horizontalScrolling:false
// other options...
});