Minesweeper-2.0-test/scripts/index.js

10 lines
299 B
JavaScript
Raw Normal View History

2023-01-27 11:45:10 +00:00
/**************************************
文件名index.js
功能该模块用于处理开始界面相关内容
版本2.0(23.01.08)
**************************************/
//3秒后进入主菜单
setTimeout(function (){
window.open('./menu.html?lang=en', "_self");
}, 3000);