游戏内嵌页说明文档
因为游戏内嵌页区域大小为720*480,所以在做游戏内嵌活动页面的时候需要注意以下几点:
- 页面宽度设置为(700px 因为会包括滚动条),高度不用设置(如果高度小于480px的话,就设置为480px)
在页面head中加
<meta http-equiv="x-ua-compatible" content="IE=edge" >
需要给滚动条添加样式,样式为
::-webkit-scrollbar-track-piece{background-color:#05060a;} ::-webkit-scrollbar{width:6px;} ::-webkit-scrollbar-thumb{background:#4c5470;border-radius: 10px}
需要屏蔽PC端自带广告,需要在js里面设置
window['no_webtips_flag'] = true;
引入milo,重新封装alert
function showMsg(msg){ need("biz.lottery",function(LotteryManager){ LotteryManager.alert(msg); }); } window.alert = function(msg){ showMsg(msg); }