我在標題中的含義是,無論哪個容器位於淡入淡出式動畫的頂部(可見),「onclick」中的href始終是相同。在幻燈片中使用onclick覆蓋div - > onclick does not change
下面是HTML
<div id="teaserslider">
<ul>
<li>
<section id="container_1">
<div class="head gradient-top loading" onclick="document.location.href='container1_detail.html'">
<div>
<!-- Content -->
</div>
</div>
</section>
</li>
<li class="animation">
<section id="container_2">
<div class="head gradient-top loading" onclick="document.location.href='container2_detail.html'">
<div>
<!-- Content -->
</div>
</div>
</section>
</li>
</ul>
</div>
這裏是CSS
#teaserslider{
height: 100px;
margin-bottom: 6px;
}
#teaserslider li {
position: absolute;
list-style: none;
-webkit-transition: opacity 1s ease-in-out;
}
@-webkit-keyframes fadeout{
0% {
opacity:1;
}
45% {
opacity:1;
}
55% {
opacity:0;
}
100% {
opacity:0;
}
}
#teaserslider li.animation {
-webkit-animation-name: fadeout;
-webkit-animation-timing-function: ease-in-out;
-webkit-animation-iteration-count: infinite;
-webkit-animation-duration: 5s;
-webkit-animation-direction: alternate;
-webkit-transform: translateZ(0);//hardware acceleration
}
你可能已經注意到,因爲這段代碼iOS版的PhoneGap應用程序內部運行我只用WebKit引擎。 無論目前顯示哪個容器,當我點擊容器時,我總是會看到「container2_detail.html」。任何人都知道如何解決此問題?謝謝。
你能提供一個演示網址? – 2012-07-17 10:35:44
經過快速測試 - 這似乎是因爲html標記順序意味着container_2始終會位於container_1的頂部*,即使它已淡出......此外,此答案可能有所幫助:http:// stackoverflow .com/questions/3331353/css-3-transitions-on-the-display-property – 2012-07-17 10:46:02
恩,不好意思。我嘗試了jsFiddle,但它沒有顯示出結果 – dan 2012-07-17 10:49:27