天天看點

mysql 背景連接配接資料庫_那麼要如何才能和背景進行連接配接呢,我想達到把MySQL資料庫的資訊在加載的時候顯示的效果...

window.onload = function(){

waterfall('main','box');

var dataInt = {"data":[{"src":'P_00.jpg'},{"src":'P_01.jpg'},{"src":'P_03.jpg'}]}

window.onscroll = function(){

if(checkScroll()){

var oParent = document.getElementById('main');

for(var i=0;i

var oBox = document.createElement("div");

oBox.className = "box";

oParent.appendChild(oBox);

var oPic = document.createElement("div");

oPic.className = "pic";

oBox.appendChild(oPic);

var oImg = document.createElement("img");

oImg.src = "images/"+dataInt.data[i].src;

oPic.appendChild(oImg);

}

waterfall('main','box');

}

}

}