slide.css({
width:width+'px';
height:height+'px'
});
width:width+'px';
height:height+'px'
});
2015-10-09
运行过程中,改变浏览器窗口大小,场景就会错乱,需要实时初始化,为了适应这个,需要添加
//窗口大小改变事件
$(window).on('resize',function(){
init();
});
//窗口大小改变事件
$(window).on('resize',function(){
init();
});
2015-10-09