搜尋

首頁  >  問答  >  主體

2048界面不能屏幕自适应

$(document).ready(function() {

prepareForMobile();
newgame();

})

function prepareForMobile(){

if( documentWidth > 500){
    gridContainerWidth = 460;
    cellSpace = 20;
    cellSideLength = 100;
}
$('#grid-container').css('width', gridContainerWidth );
$('#grid-container').css('height', gridContainerWidth);
$('#grid-container').css('padding', cellSpace);
$('#grid-container').css('border-radius', 0.02*gridContainerWidth);

$('.grid-cell').css('width', cellSideLength);
$('.grid-cell').css('height', cellSideLength);
$('.grid-cell').css('border-radius', 0.02*cellSideLength);

}

为什么我这个代码不能实现屏幕自适应,出现下图情况

892670031-581ee02140c15_articlex.png

高洛峰高洛峰2949 天前596

全部回覆(1)我來回復

  • 三叔

    三叔2016-11-07 11:14:32

    html代码也贴出来看看?用控制台看看,有没有什么其他的东西。

    回覆
    0
  • 取消回覆