置入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>
arrow
arrow
    全站熱搜
    創作者介紹
    創作者 abpop23 的頭像
    abpop23

    {橙是蛋}設計工坊

    abpop23 發表在 痞客邦 留言(0) 人氣()