divの文字列を循環しようとしているときに、現在jQueryサイクルプラグインでいくつかの問題が発生しています。
テキストはですvertical-align: middle;
が、新しいdivが追加され、プラグインが開始されるとすぐに、テキストはページの上部に配置されます。
これが私のコードです:
HTML:
<div id="splash-container" style="background-color: #fac4c8; color: #003738">
<div class="slides">
<div class="text">
test-01
</div>
</div>
</div>
CSS:
#splash-container {
position: fixed;
z-index: 9998;
height: 100%;
width: 98%;
left: 1%;
cursor: pointer;
}
.slides {
position:relative;
display: table;
vertical-align: middle;
left: 0px;
height:100%;
width:100%;
}
.text {
display: table-cell;
vertical-align: middle;
font-family:'Avenir LT W02 65 Medium', Helvetica, sans-serif;
font-size: 15px;
line-height: 12px;
text-align: left;
padding-left: 20%;
padding-right: 20%;
}
jQuery:
$(function() {
$('.slides').cycle();
});
ここでも動作するデモ:http://jsfiddle.net/ZdLHh/
スライドをさらに追加して、ページの中央に揃えたまま、別のスライドが追加されるとすぐに、ループで循環
させようとしていました。.text
プラグインが起動され、テキストがページの上部に配置されますか?
それを理解できないようです