0

http://morningside.cardboardmonet.com/にアクセスしてください。

Web サイトのドラッグは左から右にスクロールしますが、ウィンドウのサイズを変更しても拡大縮小されず、ページが空白になることに注意してください。これを修正する方法を知っている人はいますか?

ありがとう!

4

1 に答える 1

0

chacelove、あなたの js にこのコードを追加してください

$(document).ready(function() {
    initDrag();
});
//
function resize_adjustments() {
    $("#proof").css('width', '100%');
    $("#proof").css('height', '100%');
    $("#proof > div").each(function(i) {
        if($(this).css('left') == "0px") {
            current = $(this).attr('id');
            $(this).css('left', '0');
        } else {
            $(this).css('left', $("#proof").width()+"px");
        }
    });
}
var resizeTimer = null;
$(window).bind('resize', function() {
    if (resizeTimer) clearTimeout(resizeTimer);
    resizeTimer = setTimeout(resize_adjustments, 500);
});

うまくいきましたか?

于 2012-08-30T16:13:51.807 に答える