我正在修改從http://tympanus.net/codrops/2012/03/15/parallax-content-slider-with-css3-and-jquery/得到的一些CSS代碼。這是一個視差CSS3滑塊。CSS3滑塊 - 在響應式幻燈片的相對格內絕對定位
我已經嘗試了幾乎所有的東西,我的問題是我不能在瀏覽器中以固定的最大寬度居中滑動div(da.slide)。最大寬度爲970px,並在瀏覽器調整大小時縮小。我嘗試過使用margin: 0 auto
和left:50%
,它現在還在工作 - 它只是掛在左邊。
我認爲可能的問題是滑塊div的位置。當我將其從絕對變爲相對時,它適用於第一張幻燈片,但其餘幻燈片在彼此之下消失/滑動。任何機會集中滑動div?
這裏是CSS3代碼:
.da-slider{
width: 100%;
min-width: 320px;
height: 300px;
position: relative;
margin: 0 auto;
overflow: hidden;
background: transparent url(../images/waves.png);
background-repeat:repeat-x;
-webkit-transition: background-position 1s ease-out 0.3s;
-moz-transition: background-position 1s ease-out 0.3s;
-o-transition: background-position 1s ease-out 0.3s;
-ms-transition: background-position 1s ease-out 0.3s;
transition: background-position 1s ease-out 0.3s;
}
.da-slide{
position: absolute;
max-width: 970px;
width:100%;
height: 100%;
top: 0px;
left: 0px;
font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
text-align: left;
}
.da-slide-current{
z-index: 1000;
}
.da-slider-fb .da-slide{
left: 100%;
}
.da-slider-fb .da-slide.da-slide-current{
left: 0px;
}
.da-slide h2,
.da-slide p,
.da-slide .da-link,
.da-slide .da-img{
position: absolute;
opacity: 0;
left: 110%;
}
.da-slider-fb .da-slide h2,
.da-slider-fb .da-slide p,
.da-slider-fb .da-slide .da-link{
left: 10%;
opacity: 1;
}
的HTML是:
<div id="da-slider" class="da-slider">
<div class="da-slide">
<h2>Easy management</h2>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>
<a href="#" class="da-link">Read more</a>
<div class="da-img"><img src="images/2.png" alt="image01" /></div>
</div>
<div class="da-slide">
<h2>Revolution</h2>
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>
<a href="#" class="da-link">Read more</a>
<div class="da-img"><img src="images/3.png" alt="image01" /></div>
</div>
<div class="da-slide">
<h2>Warm welcome</h2>
<p>When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane.</p>
<a href="#" class="da-link">Read more</a>
<div class="da-img"><img src="images/1.png" alt="image01" /></div>
</div>
<div class="da-slide">
<h2>Quality Control</h2>
<p>Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar.</p>
<a href="#" class="da-link">Read more</a>
<div class="da-img"><img src="images/4.png" alt="image01" /></div>
</div>
<nav class="da-arrows">
<span class="da-arrows-prev"></span>
<span class="da-arrows-next"></span>
</nav>
</div>
任何幫助將不勝感激!
哦,我的話!這工作完美(在IE和Opera也)。謝謝Skiwizz!我不知道寬度問題,但感謝您爲我解決這個問題。我非常感謝你的幫助。 – Raja 2012-07-06 19:41:00