我有一個很大的圖像,它是全寬和全高,我有一個jQuery腳本與document.ready,但腳本仍然在圖像加載之前運行。我能否以另一種方式準備聲明以便加載圖像?jQuery在資產加載時運行
$(document).ready(function(){
var currWidth = $(window).width();
console.log(currWidth);
var startPos = -100;
var endPos = (currWidth/2) + (startPos/2);
console.log(endPos);
$('#welcome').animate({left: endPos}, 1000);
});
http://jsfiddle.net/KtUEL/151/
澄清; '$(document).ready(function)'或者'$(function)'在DOM加載時運行,'$(window).load(function)'在加載事件觸發時運行。 –