好吧,我主要處理的內容和一些前端設計,但我試圖把一個漂亮的圖像滑塊到iFrame到我們的網站。我能夠使用jQuery構建它,但我遇到了一個小問題。它應該有一個淡入淡出,但在第一次旋轉它只使用淡出。接下來的旋轉完美。jQuery淡入淡出(作品在第二輪但不是第一次)
這裏是我使用
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
slideShow();
});
function slideShow() {
var showing = $('#ContentContain2 .isshowing');
var next = showing.next().length ? showing.next() : showing.parent().children(':first');
showing.fadeOut(800, function() { next.fadeIn(1600).addClass('isshowing'); }).removeClass('isshowing');
setTimeout(slideShow, 5000);
}
</script>
這裏是一個鏈接到它託管,所以你可以看到問題的代碼。
http://ksee.bimedia.net/sites/community/index.html
你隱藏在運行插件之前的圖像?你已經看不到任何東西了! – adeneo 2013-05-09 16:09:35