#
luxiaotao1123
2022-08-19 162eca31378c749b8f70c32ce2ed988b1101e881
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="ja">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title>cyberspace │ sketch of three.js</title>
    <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1">
    <meta name="description" content="cyberspace made with various simple objects.">
    <meta name="keywords" content="undefined, Yoichi Kobayashi, WebGL, three.js">
    <meta name="theme-color" content="#111111">
    <meta name="msapplication-TileImage" content="/sketch-threejs/img/common/ms_tileimage.png">
    <meta name="msapplication-TileColor" content="#111111">
    <link rel="shortcut icon" href="img/common/icon.ico">
    <link rel="apple-touch-icon" sizes="180x180" href="img/common/app_icon.png">
    <link rel="stylesheet" href="css/main.min.css">
    <style>
        .p-utility-menu {
            top: 50%;
            transform:translateY(-50%);
            right: 60px;
        }
        .cool-form-block {
            margin-bottom: 30px;
        }
        .cool-form-input {
            margin-left: 8px;
            background: none;
            border: none;
            box-shadow: none;
            letter-spacing: 2px;
            border-bottom: #ffffff solid 2px;
        }
        .cool-form-input:focus {
            outline: none;
        }
        .l-page--white a {
          cursor: pointer;
          width: 58%;
        }
    </style>
  </head>
  <body>
    <div class="l-page l-page--white" data-id="cyberspace">
        <div style="position: fixed;
                    z-index: 100;
                    top: 22px;
                    left: 20px;">
            <img src="img/logo.png" alt="" style="width: 20%">
        </div>
      <div class="p-sketch-outline">
        <h2 class="p-sketch-outline__title">Warehouse Control System</h2>
        <p class="p-sketch-outline__date">posted: 2018.01.01 / update: 2022.03.18
        </p>
        <p class="p-sketch-outline__description">wcs made with various simple objects.</p>
      </div>
      <canvas class="p-canvas-webgl" id="canvas-webgl"></canvas>
 
      <div class="p-utility-menu">
        <div class="cool-form-block">
          <label>
            username
          </label>
          <input id="username" class="cool-form-input" type="text" autocomplete="off">
        </div>
        <div class="cool-form-block">
          <label>
            password
          </label>
          <input id="password" class="cool-form-input" type="password">
        </div>
        <a class="c-button c-button--white login-btn">
          <span class="c-button__icon c-button__icon--back c-button__icon--white"></span>
          <span class="c-button__label">
            <span class="js-split-str">l</span>
            <span class="js-split-str">o</span>
            <span class="js-split-str">g</span>
            <span class="js-split-str">i</span>
            <span class="js-split-str">n</span>
          </span>
        </a>
      </div>
    </div>
    <script src="js/main.min.js"></script>
    <script src="js/jquery/jquery-3.3.1.min.js"></script>
    <script>
      window.onload = function(){document.getElementById("username").focus();}
 
      $(document).on('click','.login-btn', function () {
        window.location.href = "../index.html"
      });
 
      $('body').keydown(function () {
        if (event.keyCode === 13) {
          $(".login-btn").click();
        }
      });
    </script>
  </body>
</html>