置入Flash檔太大,使用者瀏覽器解析過小,所以一開起來看到Flash左上角
這時希望可以在使用者進入網頁時能讓焦點自動移動到Flash的中間
<script type="text/javascript"> $(document).ready(function () { var pageWidth = $(window).width(); //網頁尺寸 var flashWidth = 1616; //flash尺寸 var scrolltoX = (flashWidth - pageWidth) / 2; $("html, body").animate({ scrollLeft: scrolltoX + "px" }, { duration: 500, easing: "swing" }); }); </script>
全站熱搜