summaryrefslogtreecommitdiff
path: root/www/index.html
blob: 824347df7b204fd37f32aa03f3dbad825f71f6b4 (plain)
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
<!DOCTYPE html>
<html class="no-js">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=800, height=600, initial-scale=1, maximum-scale=1">
    <title>Katawa Shoujo</title>
    <script>
        window.define = function(factory) {
            try{ delete window.define; } catch(e){ window.define = void 0; } // IE
            window.when = factory();
        };
        window.define.amd = {};
    </script>
    <link rel="shortcut icon" type="image/png" href="/dump/ui/icon.png">
    <link rel="apple-touch-icon" href="/dump/ui/icon.png">
    <link rel="stylesheet" type="text/css" href="/css/anim.css">
    <link rel="stylesheet" type="text/css" href="/css/index.css">
    <script src="/js/lib/when/when.js"></script>
    <script src="/js/lib/jquery-2.0.2.min.js"></script>
    <script src="/js/lib/modernizr.custom.71672.js"></script>
    <script src="/js/html5ks.js"></script>
    <script src="/js/api.js"></script>
    <script src="/js/play.js"></script>
    <script src="/js/images.js"></script>
    <script src="/js/characters.js"></script>
  </head>
  <body>
    <div id="warn-container">
      <div id="gray"></div>
      <div id="warn">
        <div id="notwork">We use a lot of new features in this; your browser seems to have some issues...</div>
        <ul id="warns">
          <li id="js">It doesn't seem to have JavaScript enabled. This site doesn't work at all without it. Really. <a href="http://enable-javascript.com">Don't know how to enable JS?</a></li>
          <li id="video">It doesn't seem to support <a href="https://en.wikipedia.org/wiki/HTML5_video">HTML5 video</a>, which means that you won't be able to see any of the videos (obviously). Unless stated below, though, transitions should still work. <a href="http://caniuse.com/#feat=video">You should strongly consider upgrading.</a></li>
          <li id="audio">It doesn't seem to support <a href="https://en.wikipedia.org/wiki/HTML5_audio">HTML5 audio</a>, which means you won't be able to hear any of the amazing music. <a href="http://caniuse.com/#feat=audio">You should strongly consider upgrading.</a></li>
          <li id="fontface">It doesn't seem to support <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face">the @font-face at-rule</a>, which lets us display the Playtime and Gentium fonts used in Katawa Shoujo. <a href="http://caniuse.com/#feat=fontface">Any browser released in the last 2 years or so should support it.</a></li>
          <li id="csstransforms">It doesn't seem to support <a href="https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Using_CSS_transforms">CSS transforms</a>, which means that we won't be able to scale the window or show most transitions. <a href="http://caniuse.com/#feat=transforms2d">Any browser released in the last 2 years ago should work.</a></li>
          <li id="csstransitions">It doesn't seem to support <a href="https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Using_CSS_transitions">CSS transitions</a>, which means that transitions won't work. Videos should still work though, unless stated above. <a href="http://caniuse.com/#feat=css-transitions">You should definitely try upgrading.</a></li>
          <li id="html-svg-filter">It might not support SVG filters on HTML content, which means that filters like the sunset in the tea room will display as regular images. <a href="http://caniuse.com/#feat=svg-html">Unfortunately, this is only implemented in Firefox now.</a></li>
        </ul>
        <div id="gotit" class="button">I know it's broken, let me play!</div>
      </div>
    </div>
    <div id="container">
      <div id="img">
        <img id="bg" src="/loading.png" alt="">
        <div id="solid"></div>
      </div>
      <div id="window" style="display: none;">
        <img id="window-image" src="/dump/ui/bg-say.png" alt="">
        <div id="who"></div>
        <div id="say"></div>
      </div>
      <video id="vid"></video>
    </div>
  </body>
</html>