Browse Source

tweak buttons

root 2 years ago
parent
commit
fcf052fa43
18 changed files with 356 additions and 62 deletions
  1. 2 1
      about/index.html
  2. 11 0
      chem/index.html
  3. 8 3
      chess/index.html
  4. 0 1
      css/style.css
  5. 17 5
      fun/article/index.html
  6. 0 1
      fun/random/index.html
  7. 0 1
      gravity/index.html
  8. 13 27
      index.html
  9. 5 0
      js/chem.js
  10. 0 0
      js/chem.min.js
  11. 0 3
      js/chess.js
  12. 0 1
      js/mode-ecb.js
  13. 281 0
      js/saver.js
  14. 0 0
      js/saver.min.js
  15. 1 6
      js/score.js
  16. 0 0
      js/score.min.js
  17. 18 12
      log/index.html
  18. 0 1
      paint/index.html

+ 2 - 1
about/index.html

@@ -20,7 +20,8 @@
 </head>
 
 <body>
-    <a class="btn btn-info" href="/"><span class="glyphicon glyphicon-home" aria-hidden="true"></span>&nbsp;返回</a>
+    <button class="btn btn-info" onclick="history.back()"><span
+            class="glyphicon glyphicon-home"></span>&nbsp;返回</button>
 
     <div class="page-header">
         <h2>关于此网站<small></small></h2>

+ 11 - 0
chem/index.html

@@ -71,6 +71,9 @@
     <div class="row">
         <div class="col-lg-2 col-md-2 col-xs-12">
             <a class="btn btn-info" href="/"><i class="glyphicon glyphicon-home" aria-hidden="true"></i>&nbsp;返回</a>
+            <button class="btn btn-default" onclick="$('.help').toggle(300)"><i
+                    class="glyphicon glyphicon-question-sign"></i></button>
+
             <hr>
         </div>
         <div class="col-lg-8 col-md-10 col-xs-12">
@@ -159,6 +162,14 @@
             </div>
         </div>
     </div>
+    <div class="help" style="display:none">
+        <p>忽然觉得可能多数人看到这个界面会一脸懵,所以我还是写个说明吧。</p>
+        <p>上下两个面板都可以用文字直接输入化学式,上面那个负责运算,下面那个负责数据库的交互。</p>
+        <p>具体怎么操作相信大家都能看懂,用最右边的箭头可以切换功能,然后输入化学式,按下按钮,或者回车也行。至于相对质量,由于不需要多少算力,它是实时更新的。</p>
+        <p>我运用了聪明绝顶的正则表达式(也就是那一串火星文),保证了查询方程式时,只要所有分子完全匹配,无论顺序都能查得到。你也可以改为只查包含某种元素的化学式,按左边的按钮就行。</p>
+        <p>左边的箭头按钮考虑的是在上下之间快速复制粘贴方程式,不过这个功能还没完全实现。以及根据描述查询方程式的功能也还没实现。</p>
+        <p>我目前只录入了高一上学期末讲的一些硫有关的式子,你要是吃饱了闲着没事干也可以帮我录入。查到的方程式带着的数字就是它的 id,修改的时候用得到到。</p>
+    </div>
 </body>
 
 </html>

+ 8 - 3
chess/index.html

@@ -227,9 +227,8 @@
                 <button class="btn btn-info" id="check"><i class=" glyphicon glyphicon-exclamation-sign"
                         aria-hidden="true"></i>&nbsp;下哪了</button>
             </div>
-            <button class="btn btn-default noshadow" id="help"
-                onclick="alert('说明:普通五子棋,需双人对战,同一设备只能使用一种颜色。\n(找不到同伴可以自己用两个设备玩)\n右侧按钮可用于发送信号,但请勿频繁点击。\n两个指示灯分别表示自身颜色和当前颜色,两者相同时说明该你了')"><i
-                    class="glyphicon glyphicon-question-sign" aria-hidden="true"></i></button>
+            <a class="btn btn-default noshadow" onclick="$('.help').toggle()" href="#help"><i
+                    class="glyphicon glyphicon-question-sign"></i></a>
             <div class="led mylight"></div>
             <div class="led light"></div>
             <button class="btn btn-danger word message1">快</button>
@@ -242,6 +241,12 @@
         </div>
         <div style="display:inline-block">在线人数:<il id="messageServer"></il>
         </div>
+        <div class="help" style="display:none">
+            <h4 id="help">说明</h4>
+            <p>普通五子棋,需双人对战,同一设备只能使用一种颜色。(找不到同伴可以自己用两个设备玩)</p>
+            <p>右侧按钮可用于发送信号,但请勿频繁点击。</p>
+            <p>两个指示灯分别表示自身颜色和当前颜色,两者相同时说明该你了。</p>
+        </div>
     </div>
     </div>
     <script src="../js/chess.js"></script>

+ 0 - 1
css/style.css

@@ -16,7 +16,6 @@ h4 {
     }
 }
 
-
 @media screen and (min-width:699px) {
     body {
         padding: 20px 75px 40px 75px;

+ 17 - 5
article/index.html → fun/article/index.html

@@ -1,16 +1,28 @@
 <head>
     <meta charset="UTF-8">
-    <script type="text/javascript" src="../js/jquery.min.js" crossorigin="anonymous"></script>
-    <link rel="stylesheet" href="../css/bootstrap.min.css" crossorigin="anonymous">
-    <script type="text/javascript" src="../js/bootstrap.min.js" crossorigin="anonymous"></script>
+    <script type="text/javascript" src="/js/jquery.min.js" crossorigin="anonymous"></script>
+    <link rel="stylesheet" href="/css/bootstrap.min.css" crossorigin="anonymous">
+    <script type="text/javascript" src="/js/bootstrap.min.js" crossorigin="anonymous"></script>
     <link rel="preconnect" href="https://fonts.gstatic.com">
     <link href="https://fonts.loli.net/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700
 &family=Noto+Serif+SC:wght@300;400;500;600;700&display=swap" rel="stylesheet">
-    <link rel="stylesheet" href="../css/style.css">
+    <link rel="stylesheet" href="/css/style.css">
 </head>
 
 <body>
-    <a class="btn btn-info" href="/"><span class="glyphicon glyphicon-home" aria-hidden="true"></span>&nbsp;返回</a>
+    <button class="btn btn-info" onclick="history.back()"><span
+            class="glyphicon glyphicon-home"></span>&nbsp;返回</button>
+    <div class="page-header">
+        <h2>Death is but crossing the world<small> <i>Harry Potter</i> 某一部的序言</small></h2>
+    </div>
+    <p>Death is but crossing the world, as friends do the seas; they live in one another still. </p>
+    <p>For they must needs
+        be present, that love and live in that which is omnipresent. </p>
+    <p>In this divine glass, they see face to face;
+        and their converse is free, as well as pure. </p>
+    <p>This is the comfort of friends, that though they may be said to
+        die, yet their friendship and society are, in the best sense, ever present, because immortal.</p>
+
     <div class="page-header">
         <h2>Seduce someone
             <small>(背单词时发现的)</small>

+ 0 - 1
fun/random/index.html

@@ -71,7 +71,6 @@
             }
         }
 
-
         @media screen and (min-width:699px) {
             .content {
                 padding: 20px 75px 40px 75px;

+ 0 - 1
gravity/index.html

@@ -62,7 +62,6 @@
         console.log('当前浏览器不支持Web Audio API');
     }
 
-
     var audioCtx = new AudioContext();
 
     var arrFrequency = [196.00, 220.00, 246.94, 261.63, 293.66, 329.63, 349.23, 392.00, 440.00, 493.88, 523.25, 587.33, 659.25, 698.46, 783.99, 880.00, 987.77, 1046.50];

+ 13 - 27
index.html

@@ -14,9 +14,9 @@
     <meta property="article:author" content="Alex">
     <meta name="twitter:card" content="summary">
 
-    <script type="text/javascript" src="../js/jquery.min.js" crossorigin="anonymous"></script>
-    <link rel="stylesheet" href="../css/bootstrap.min.css" crossorigin="anonymous">
-    <script type="text/javascript" src="../js/bootstrap.min.js" crossorigin="anonymous"></script>
+    <script type="text/javascript" src="js/jquery.min.js" crossorigin="anonymous"></script>
+    <link rel="stylesheet" href="css/bootstrap.min.css" crossorigin="anonymous">
+    <script type="text/javascript" src="js/bootstrap.min.js" crossorigin="anonymous"></script>
 
     <link rel="canonical" href="https://schtonn.github.io/">
     <!-- <link async rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
@@ -32,6 +32,7 @@
         * {
             transition-duration: 300ms;
         }
+
         /* https://i.328888.xyz/2022/12/23/Dn9eo.jpeg */
         body {
             background-image: url(https://i.328888.xyz/2022/12/23/DnIEL.jpeg);
@@ -76,7 +77,6 @@
             text-shadow: seagreen -1px -2px 3px, grey 1px 2px 3px, whitesmoke -1px 2px 3px;
         }
 
-
         #log:hover {
             text-shadow: floralwhite -1px -2px 3px, grey 1px 2px 3px, black -1px 2px 2px;
         }
@@ -106,12 +106,12 @@
             color: white;
             text-decoration: underline wavy #FF3028;
             text-shadow: 1px 1px 2px red, 0 0 1em blue, 0 0 0.2em blue;
-            background-color: black;
+            background-color: transparent;
         }
 
         .gee {
             color: white;
-            background-color: rgba(0,0,0,0.4);
+            background-color: rgba(0, 0, 0, 0.4);
         }
 
         .btn-dang {
@@ -149,7 +149,8 @@
         .full {
             background-color: rgba(202, 202, 202, 0.5);
             border-radius: 10px;
-            margin-top: 50px;
+            margin-top: 35px;
+            padding-top: 15px;
         }
 
         .full.gee {
@@ -157,7 +158,7 @@
             border-radius: 10px;
             margin: 0;
             padding-top: 50px;
-            padding-bottom: 50px;
+            padding-bottom: 30px;
             backdrop-filter: blur(5px);
         }
     </style>
@@ -195,33 +196,18 @@
 
         </div>
 
-
         <div class="col-md-10">
             <hr>
             <h3>> 娱乐</h3>
             <div>
-                <a class="btn btn-info" href="/core/">Core</a>
-                <div class="btn-group">
-                    <button type="button" class="btn btn-info dropdown-toggle" data-toggle="dropdown">sans&nbsp;<span
-                            class="caret"></span></button>
-                    <ul class="dropdown-menu">
-                        <li><a href="/sans/">sans</a></li>
-                        <li><a href="/sans-cheat/"><span class="glyphicon glyphicon-wrench"
-                                    aria-hidden="true"></span>&nbsp;&nbsp;sans</a></li>
-                    </ul>
-                </div>
-                <a class="btn btn-info" id="random" href="/random/"><span class="glyphicon glyphicon-random"
-                        aria-hidden="true"></span>&nbsp;&nbsp;random</a>
                 <a class="btn btn-info" id="paint" href="/paint/"><span class="glyphicon glyphicon-pencil"
                         aria-hidden="true"></span>&nbsp;&nbsp;绘画板</a>
                 <a class="btn btn-info" id="chess" href="/chess/"><span class="glyphicon glyphicon-record"
                         aria-hidden="true"></span>&nbsp;&nbsp;五子棋</a>
                 <a class="btn btn-info" id="gravity" href="/gravity/"><span class="glyphicon glyphicon-magnet"
                         aria-hidden="true"></span>&nbsp;&nbsp;引力</a>
-                <a class="btn btn-info" id="raytrack" href="/test/"><span class="glyphicon glyphicon-cog"
-                        aria-hidden="true"></span>&nbsp;&nbsp;1k光追</a>
-                <!-- <a class="btn btn-info" id="article" href="/article/"><span class="glyphicon glyphicon-book"
-                    aria-hidden="true"></span>&nbsp;&nbsp;一些好玩的文章</a> -->
+                <a class="btn btn-primary" href="/fun/"><span class="glyphicon glyphicon-chevron-right"
+                        aria-hidden="true"></span>&nbsp;&nbsp;更多</a>
             </div>
         </div>
 
@@ -272,8 +258,8 @@
             secret message: iee
         </div>
     </div>
-    <div style="position:absolute; left:0px; bottom:0px;color:rgba(202, 202, 202, 0.5)">
-        背景摄于潭柘寺
+    <div style="position:fixed; left:0px; bottom:0px;color:rgba(202, 202, 202, 0.5)">
+        摄于潭柘寺
     </div>
 </body>
 

+ 5 - 0
js/chem.js

@@ -174,6 +174,11 @@ $().ready(function () {
             $("#balBtn")[0].click();
         }
     });
+    $("#qryInput").keydown(function (e) {
+        if (e.keyCode == 13 && mode == 'bal') {
+            $("#qryBtn")[0].click();
+        }
+    });
     $(function () { $("[data-toggle='tooltip']").tooltip(); });
 })
 function setBal() {

File diff suppressed because it is too large
+ 0 - 0
js/chem.min.js


+ 0 - 3
js/chess.js

@@ -12,7 +12,6 @@ $(window).on({
 
 var curCol = 0, myCol = 2, cur, messages = [0, 0, 0];
 
-
 function isMobile() {
     let flag = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
     // alert(navigator.userAgent + '\n' + flag)
@@ -88,7 +87,6 @@ function uploadMessages() {
     st = 0;
 }
 
-
 function updateCol() {
     updateCurLight();
     if (curCol) {
@@ -100,7 +98,6 @@ function updateCol() {
     }
 }
 
-
 class Chess {
     constructor(ele) {
         this.ele = ele;

+ 0 - 1
js/mode-ecb.js

@@ -34,7 +34,6 @@
 	    return ECB;
 	}());
 
-
 	return CryptoJS.mode.ECB;
 
 }));

+ 281 - 0
js/saver.js

@@ -0,0 +1,281 @@
+/*
+* FileSaver.js
+* A saveAs() FileSaver implementation.
+*
+* By Eli Grey, http://eligrey.com
+*
+* License : https://github.com/eligrey/FileSaver.js/blob/master/LICENSE.md (MIT)
+* source  : http://purl.eligrey.com/github/FileSaver.js
+*/
+
+// The one and only way of getting global scope in all environments
+// https://stackoverflow.com/q/3277182/1008999
+var _global = typeof window === 'object' && window.window === window
+    ? window : typeof self === 'object' && self.self === self
+        ? self : typeof global === 'object' && global.global === global
+            ? global
+            : this
+
+function bom(blob, opts) {
+    if (typeof opts === 'undefined') opts = { autoBom: false }
+    else if (typeof opts !== 'object') {
+        console.warn('Deprecated: Expected third argument to be a object')
+        opts = { autoBom: !opts }
+    }
+
+    // prepend BOM for UTF-8 XML and text/* types (including HTML)
+    // note: your browser will automatically convert UTF-16 U+FEFF to EF BB BF
+    if (opts.autoBom && /^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(blob.type)) {
+        return new Blob([String.fromCharCode(0xFEFF), blob], { type: blob.type })
+    }
+    return blob
+}
+
+function download(url, name, opts) {
+    var xhr = new XMLHttpRequest()
+    xhr.open('GET', url)
+    xhr.responseType = 'blob'
+    xhr.onload = function () {
+        saveAs(xhr.response, name, opts)
+    }
+    xhr.onerror = function () {
+        console.error('could not download file')
+    }
+    xhr.send()
+}
+
+function corsEnabled(url) {
+    var xhr = new XMLHttpRequest()
+    // use sync to avoid popup blocker
+    xhr.open('HEAD', url, false)
+    try {
+        xhr.send()
+    } catch (e) { }
+    return xhr.status >= 200 && xhr.status <= 299
+}
+
+// `a.click()` doesn't work for all browsers (#465)
+function click(node) {
+    try {
+        node.dispatchEvent(new MouseEvent('click'))
+    } catch (e) {
+        var evt = document.createEvent('MouseEvents')
+        evt.initMouseEvent('click', true, true, window, 0, 0, 0, 80,
+            20, false, false, false, false, 0, null)
+        node.dispatchEvent(evt)
+    }
+}
+
+// Detect WebView inside a native macOS app by ruling out all browsers
+// We just need to check for 'Safari' because all other browsers (besides Firefox) include that too
+// https://www.whatismybrowser.com/guides/the-latest-user-agent/macos
+var isMacOSWebView = _global.navigator && /Macintosh/.test(navigator.userAgent) && /AppleWebKit/.test(navigator.userAgent) && !/Safari/.test(navigator.userAgent)
+
+var saveAs = _global.saveAs || (
+    // probably in some web worker
+    (typeof window !== 'object' || window !== _global)
+        ? function saveAs() { /* noop */ }
+
+        // Use download attribute first if possible (#193 Lumia mobile) unless this is a macOS WebView
+        : ('download' in HTMLAnchorElement.prototype && !isMacOSWebView)
+            ? function saveAs(blob, name, opts) {
+                var URL = _global.URL || _global.webkitURL
+                var a = document.createElement('a')
+                name = name || blob.name || 'download'
+
+                a.download = name
+                a.rel = 'noopener' // tabnabbing
+
+                // TODO: detect chrome extensions & packaged apps
+                // a.target = '_blank'
+
+                if (typeof blob === 'string') {
+                    // Support regular links
+                    a.href = blob
+                    if (a.origin !== location.origin) {
+                        corsEnabled(a.href)
+                            ? download(blob, name, opts)
+                            : click(a, a.target = '_blank')
+                    } else {
+                        click(a)
+                    }
+                } else {
+                    // Support blobs
+                    a.href = URL.createObjectURL(blob)
+                    setTimeout(function () { URL.revokeObjectURL(a.href) }, 4E4) // 40s
+                    setTimeout(function () { click(a) }, 0)
+                }
+            }
+
+            // Use msSaveOrOpenBlob as a second approach
+            : 'msSaveOrOpenBlob' in navigator
+                ? function saveAs(blob, name, opts) {
+                    name = name || blob.name || 'download'
+
+                    if (typeof blob === 'string') {
+                        if (corsEnabled(blob)) {
+                            download(blob, name, opts)
+                        } else {
+                            var a = document.createElement('a')
+                            a.href = blob
+                            a.target = '_blank'
+                            setTimeout(function () { click(a) })
+                        }
+                    } else {
+                        navigator.msSaveOrOpenBlob(bom(blob, opts), name)
+                    }
+                }
+
+                // Fallback to using FileReader and a popup
+                : function saveAs(blob, name, opts, popup) {
+                    // Open a popup immediately do go around popup blocker
+                    // Mostly only available on user interaction and the fileReader is async so...
+                    popup = popup || open('', '_blank')
+                    if (popup) {
+                        popup.document.title =
+                            popup.document.body.innerText = 'downloading...'
+                    }
+
+                    if (typeof blob === 'string') return download(blob, name, opts)
+
+                    var force = blob.type === 'application/octet-stream'
+                    var isSafari = /constructor/i.test(_global.HTMLElement) || _global.safari
+                    var isChromeIOS = /CriOS\/[\d]+/.test(navigator.userAgent)
+
+                    if ((isChromeIOS || (force && isSafari) || isMacOSWebView) && typeof FileReader !== 'undefined') {
+                        // Safari doesn't allow downloading of blob URLs
+                        var reader = new FileReader()
+                        reader.onloadend = function () {
+                            var url = reader.result
+                            url = isChromeIOS ? url : url.replace(/^data:[^;]*;/, 'data:attachment/file;')
+                            if (popup) popup.location.href = url
+                            else location = url
+                            popup = null // reverse-tabnabbing #460
+                        }
+                        reader.readAsDataURL(blob)
+                    } else {
+                        var URL = _global.URL || _global.webkitURL
+                        var url = URL.createObjectURL(blob)
+                        if (popup) popup.location = url
+                        else location.href = url
+                        popup = null // reverse-tabnabbing #460
+                        setTimeout(function () { URL.revokeObjectURL(url) }, 4E4) // 40s
+                    }
+                }
+)
+
+_global.saveAs = saveAs.saveAs = saveAs
+
+if (typeof module !== 'undefined') {
+    module.exports = saveAs;
+}
+if (typeof jQuery !== 'undefined' && typeof saveAs !== 'undefined') {
+    ; (function ($) {
+        $.fn.wordExport = function (fileName) {
+            fileName =
+                typeof fileName !== 'undefined' ? fileName : 'jQuery-Word-Export'
+            var static = {
+                // mhtml: {
+                //   top:
+                //     'Mime-Version: 1.0\nContent-Base: ' +
+                //     location.href +
+                //     '\nContent-Type: Multipart/related; boundary="NEXT.ITEM-BOUNDARY";type="text/html"\n\n--NEXT.ITEM-BOUNDARY\nContent-Type: text/html; charset="utf-8"\nContent-Location: ' +
+                //     location.href +
+                //     '\n\n<!DOCTYPE html>\n<html>\n_html_</html>',
+                //   head:
+                //     '<head>\n<meta http-equiv="Content-Type" content="text/html; charset=utf-8">\n<style>\n_styles_\n</style>\n</head>\n',
+                //   body: '<body>_body_</body>'
+                // }
+                mhtml: {
+                    top:
+                        'Mime-Version: 1.0\nContent-Base: ' +
+                        location.href +
+                        '\nContent-Type: Multipart/related; boundary="NEXT.ITEM-BOUNDARY";type="text/html"\n\n--NEXT.ITEM-BOUNDARY\nContent-Type: text/html; charset="utf-8"\nContent-Location: ' +
+                        location.href +
+                        '\n\n<!DOCTYPE html>\n' +
+                        '<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">\n_html_</html>',
+                    head:
+                        '<head>\n<meta http-equiv="Content-Type" content="text/html; charset=utf-8">\n<style>\n_styles_\n</style>\n<!--[if gte mso 9]><xml><w:WordDocument><w:View>Print</w:View><w:TrackMoves>false</w:TrackMoves><w:TrackFormatting/><w:ValidateAgainstSchemas/><w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid><w:IgnoreMixedContent>false</w:IgnoreMixedContent><w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText><w:DoNotPromoteQF/><w:LidThemeOther>EN-US</w:LidThemeOther><w:LidThemeAsian>ZH-CN</w:LidThemeAsian><w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript><w:Compatibility><w:BreakWrappedTables/><w:SnapToGridInCell/><w:WrapTextWithPunct/><w:UseAsianBreakRules/><w:DontGrowAutofit/><w:SplitPgBreakAndParaMark/><w:DontVertAlignCellWithSp/><w:DontBreakConstrainedForcedTables/><w:DontVertAlignInTxbx/><w:Word11KerningPairs/><w:CachedColBalance/><w:UseFELayout/></w:Compatibility><w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel><m:mathPr><m:mathFont m:val="Cambria Math"/><m:brkBin m:val="before"/><m:brkBinSub m:val="--"/><m:smallFrac m:val="off"/><m:dispDef/><m:lMargin m:val="0"/> <m:rMargin m:val="0"/><m:defJc m:val="centerGroup"/><m:wrapIndent m:val="1440"/><m:intLim m:val="subSup"/><m:naryLim m:val="undOvr"/></m:mathPr></w:WordDocument></xml><![endif]--></head>\n',
+                    body: '<body>_body_</body>'
+                }
+            }
+            var options = {
+                maxWidth: 624
+            }
+            // Clone selected element before manipulating it
+            var markup = $(this).clone()
+
+            // Remove hidden elements from the output
+            markup.each(function () {
+                var self = $(this)
+                if (self.is(':hidden')) self.remove()
+            })
+
+            // Embed all images using Data URLs
+            var images = Array()
+            var img = markup.find('img')
+            for (var i = 0; i < img.length; i++) {
+                // Calculate dimensions of output image
+                var w = Math.min(img[i].width, options.maxWidth)
+                var h = img[i].height * (w / img[i].width)
+                // var w = '200'
+                // var h = '100'
+                // Create canvas for converting image to data URL
+                var canvas = document.createElement('CANVAS')
+                canvas.width = w
+                canvas.height = h
+                // Draw image to canvas
+                var context = canvas.getContext('2d')
+                context.drawImage(img[i], 0, 0, w, h)
+                // Get data URL encoding of image
+                var uri = canvas.toDataURL('image/png')
+                $(img[i]).attr('src', img[i].src)
+                img[i].width = w
+                img[i].height = h
+                // Save encoded image to array
+                images[i] = {
+                    type: uri.substring(uri.indexOf(':') + 1, uri.indexOf(';')),
+                    encoding: uri.substring(uri.indexOf(';') + 1, uri.indexOf(',')),
+                    location: $(img[i]).attr('src'),
+                    data: uri.substring(uri.indexOf(',') + 1)
+                }
+            }
+
+            // Prepare bottom of mhtml file with image data
+            var mhtmlBottom = '\n'
+            for (var i = 0; i < images.length; i++) {
+                mhtmlBottom += '--NEXT.ITEM-BOUNDARY\n'
+                mhtmlBottom += 'Content-Location: ' + images[i].location + '\n'
+                mhtmlBottom += 'Content-Type: ' + images[i].type + '\n'
+                mhtmlBottom +=
+                    'Content-Transfer-Encoding: ' + images[i].encoding + '\n\n'
+                mhtmlBottom += images[i].data + '\n\n'
+            }
+            mhtmlBottom += '--NEXT.ITEM-BOUNDARY--'
+
+            //TODO: load css from included stylesheet
+            var styles = ''
+
+            // Aggregate parts of the file together
+            var fileContent =
+                static.mhtml.top.replace(
+                    '_html_',
+                    static.mhtml.head.replace('_styles_', styles) +
+                    static.mhtml.body.replace('_body_', markup.html())
+                ) + mhtmlBottom
+
+            // Create a Blob with the file contents
+            var blob = new Blob([fileContent], {
+                type: 'application/msword;charset=utf-8'
+            })
+            saveAs(blob, fileName + '.doc')
+        }
+    })(jQuery)
+} else {
+    if (typeof jQuery === 'undefined') {
+        console.error('jQuery Word Export: missing dependency (jQuery)')
+    }
+    if (typeof saveAs === 'undefined') {
+        console.error('jQuery Word Export: missing dependency (FileSaver.js)')
+    }
+}

File diff suppressed because it is too large
+ 0 - 0
js/saver.min.js


+ 1 - 6
js/score.js

@@ -224,7 +224,6 @@ function wriggle(el) {
     }, Math.random() * 600 + 300))
 }
 
-
 function getCol(rate) {
     if (90 <= rate) return 'success'
     if (75 <= rate) return 'info'
@@ -423,7 +422,7 @@ function processFiles(isFirstTime = 0) {
         $('#single').append('<span id="singleDat" style="word-wrap: break-word; white-space: normal"></span><br><br><br>')
         if (isFirstTime) {
             var bd = JSON.stringify({
-                content: mulStu.studentName + ' ' + parseInt(dat.examStudents[0].classId),
+                content: stuId[cur] + ' (' + parseInt(dat.examStudents[0].classId) + ' ' + mulStu.studentName + ') fetched ' + examId[cur] + ' ("' + dat.multiExam.meName + '")',
             })
             fetch('/score/log', {
                 method: 'POST',
@@ -450,7 +449,6 @@ function processFiles(isFirstTime = 0) {
             + classText
         else output.innerHTML = classText;
 
-
         $("#fileOutput table").css("display", "inline-table");
         $("#fileOutput table").css("margin-bottom", "0px");
 
@@ -466,7 +464,6 @@ function processFiles(isFirstTime = 0) {
         oc3 = echarts.init($("#order3")[0]);
         oc4 = echarts.init($("#order4")[0]);
 
-
         var seNameDicP = [], scorePP = [], scoreSe = {}, avgPP = [], rateFullP = [], scoreQ = [], avgQ = [];
         var seNameDicP2 = [], classOrderPP = [], gradeOrderPP = [], classOrderQ = [], gradeOrderQ = [];
         var seNameDicP3 = [], ysClassOrderPP = [], ysClassOrderQ = [];
@@ -656,7 +653,6 @@ function processFiles(isFirstTime = 0) {
             { name: '我的得分率', type: 'line', data: scoreQ, color: '#d9534f' }
         ]
 
-
         oOp1.title = {
             text: '行政排名位次',
             textStyle: {
@@ -765,7 +761,6 @@ function processFiles(isFirstTime = 0) {
             name: '分班排名(%)', type: 'bar', data: ysClassOrderQ, color: '#5cb85c'
         }]
 
-
         // 为echarts对象加载数据 
         cc.setOption(cOp);
         sc1.setOption(sOp1);

File diff suppressed because it is too large
+ 0 - 0
js/score.min.js


+ 18 - 12
log/index.html

@@ -89,6 +89,16 @@
         <h1>网站日志</h1>
     </div>
 
+    <h3 id="22.12.23">
+        2022.12.23
+        <small>git hooks</small>
+    </h3>
+    <p>用 Git Hooks 科技实现了博客的自动推送更新,这样就不用我每次都暴力粘贴了。hook 这个名字听着很高大上,其实就是 <code>git push</code>
+        之后执行一个脚本,把原来的博客文件夹覆盖了而已,也就是把暴力粘贴的工作自动化。</p>
+    <p>给首页加上了背景图,是我在潭柘寺拍的鸽子。这张图太大了,我云服务器的公网出流量要省着用,所以我托管到图床上了。</p>
+    <p>发现了一个很神奇的 js 压缩工具,<a href="https://lifthrasiir.github.io/roadroller/">Roadroller</a>,能把代码压到原来的百分之几大小,所以我稍微压了一下成绩查询和化学数据库的代码。</p>
+    <hr>
+
     <h3 id="22.12.22">
         2022.12.22
         <small><a href="/score">score</a>、<a href="/about">about</a></small>
@@ -224,21 +234,17 @@
             href="/chemist?H2+O2=H2O">/chemist?H2+O2=H2O</a>)。</p>
     <p>用 WebSocket 可以实现服务器与客户端的即时通讯,原先搭载在 LeanCloud 上的五子棋计算部分可以迁移到本地了。</p>
 
-    <hr>
-    <p>开始记录。</p>
     <hr>
     <p><button class="btn btn-danger btn-dang"><span class="glyphicon glyphicon-off" aria-hidden="true"></span></button>
     </p>
-    <pre style="font-family: Arial;font-size: 10pt">
-        .·´¯`·.¸  °       ¸.·´¯¯¯¯`·–·´(    '  ¸.-~*¨¯`,      ¸.·–.¸ °          _.·-·.¸_'      /( '       ¸.·´`·. '      .·´¯¯`·.     .·´(  '      .·´¯¯`·.     .·´(  '   
-    |`·,      `·.¸ °  '/   /¯¯`·.__.·´|     |¯¯)     /| ¸.·´   /¯¯'/ ¸.-~·*¨¯        ¯`·-·´    )‘  ¸.·´   ¸.·´¨|‘    /   /`·.¸  `·.|'.   \‚      /   /`·.¸  `·.|'.   \‚    
-    |.·'  .·´|_.·'|    |   |.—-.¸__¸.·' '    |.·´     /=(      (_.·´ ' |`·.(¯¯¯¯`·.   (`·.__.·´|'  /     '/\¯¯¯\‚  /   /    '`·.   `·'    \' '  /   /    '`·.   `·'    \' ' 
-    |'·.__¯¯`·.|    |\  '\__¸.·´¯¯`·.    (    ¸.·´     `·.    )       `·.|¯¯¯¯¯')   '\·.__.·´'  |      |  |     '| '|   |`·.       `·.       |°'|   |`·.       `·.       |°
-    |.·´¯/|¯`·.  `·. |' `·.¸___¸.·-.   '\° |`·.(   ¸.·´¯\  ).·´'|‘   '               /      \     '    |      |  |     '| '|\   \  `·.       \   .·´| '|\   \  `·.       \   .·´| 
-    |'·. '´¯¯¯    /|°`·.              ).·´|' '·.   |´        \|    |‚  '               |'·._.·´¨|   °    '|\___'\/___/| '|  '\(      `·.     \(   '| '|  '\(      `·.     \(   '| 
-    |   ¯¯¯¯¯¯  |     `·.____.·|   ¸'  '  `·.|          |¸.·´                   '·._.·´¯'         |      | |      '|  '·.  '|        `·.   |   .'  '·.  '|        `·.   |   .' 
-    `·————·´                 |.·´   '                                           '               `·.__|/|__.·´''     `·|           `·.|·´'       `·|           `·.|·´'   </pre>
-    
+    <pre style="font-family: 'Courier New';font-size: 10pt;white-space: pre;margin: 1em 0px;line-height: 10pt;">
+    .▄▄ ·  ▄▄·  ▄ .▄▄▄▄▄▄       ▐ ▄  ▐ ▄ 
+    ▐█ ▀. ▐█ ▌▪██▪▐█•██  ▪     •█▌▐█•█▌▐█
+    ▄▀▀▀█▄██ ▄▄██▀▐█ ▐█.▪ ▄█▀▄ ▐█▐▐▌▐█▐▐▌
+    ▐█▄▪▐█▐███▌██▌▐▀ ▐█▌·▐█▌.▐▌██▐█▌██▐█▌
+     ▀▀▀▀ ·▀▀▀ ▀▀▀ · ▀▀▀  ▀█▄▀▪▀▀ █▪▀▀ █▪
+    </pre>
+
 </body>
 
 </html>

+ 0 - 1
paint/index.html

@@ -118,7 +118,6 @@
             border: 1px solid rgb(211, 211, 211);
         }
 
-
         .pixel {
             width: 5px;
             height: 5px;

Some files were not shown because too many files changed in this diff