#
luxiaotao1123
2022-02-18 ce49fdd43a76a380ed782e882280d7d1c32dee79
views/index.html
@@ -248,7 +248,7 @@
    $(document).on('click','.btn-word', function () {
        fullScreen();
        $("#mask").fadeOut(3000, function () {  // 3000
        $("#mask").fadeOut(1, function () {  // 3000
            $("#menu").addClass("show");
            setTimeout(function () {
                $("#ship-type-ul").css("transform", "translateY(-40px)");
@@ -262,7 +262,7 @@
                setTimeout(function () {
                    removeClass(document.getElementById("title-box"), "show");
                }, 5000);
            }, 1000);   // 1000
            }, 1);   // 1000
        });
        $("#title-box, #logo").addClass("show");
        $("#ship-info-btn").removeClass("show");
@@ -270,5 +270,20 @@
        $("#ship-type-ul").css("transform", "translateY(-20px)");
    });
    // 开始模拟
    $(document).on('click','.task-confirm', function () {
        $.ajax({
            // url: 'http://47.97.1.152:58080/jkwcs/three/start',
            url: 'http://localhost:9090/jkwcs/three/start',
            type: "GET",
            data: {},
            success: function (res) {
                if (res.code !== 200) {
                    alert(res.msg);
                }
            }
        })
    })
</script>
</html>