我正在尋找實現隱藏/顯示div在鼠標輸入div的位置顯示,但以滑動從左到右的方式與緩動。幻燈片水平緩動
此外我需要頁面專注於剛剛滑出/顯示的新div。
這是我的腳本。
我需要添加什麼想法?
<script>$("#box0").mouseenter(function() {
$("#lSection2").show('slide').delay(5000);
$("#boxContent0").slideDown(3000);
$("#boxContent0").focus();
});
$('#boxContent0').mouseleave(function() {
$("#boxContent0").fadeOut(1000);
$("#lSection2").fadeOut(1000);
});</script>
<div class="AdBox" id="box0">mouse over or click to view details</div>
<div id="lSection2" style="display:none;"><div id="boxContent0"
style="display:none;" class="boxContent">
<div align="left" style="">Win Big<br />
- Ipad<br />
- Holiday<br />
- 1 Year Spa Treatments</div>
<div></div>
你應該提高你的問題的質量讓我們能夠幫助您。你可以請添加你想要達到什麼(你想要一些div從左到右滑動)。它目前在做什麼?你在談論一些'div',但我沒有看到你的問題。你可以添加你的(相關的)HTML嗎?它也有助於設置演示。你可以爲此使用http://jsfiddle.net。 – PeeHaa