UNPKG

ks3-js-sdk

Version:

js sdk for ks3

60 lines (58 loc) 2 kB
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>ks3-js-sdk demo</title> <style> body { font-family: "Microsoft YaHei";} .title { padding: 20px 50px; font-size: 30px; } .page { min-width:1000px; margin:0 auto; padding: 0 50px; display:flex; } .main-wrap { width: 50%; } .main { margin-bottom: 20px; } .siderbar { width: 50%; margin-bottom: 20px; } .result { line-height:1.3;font-size: 13px;font-family:monospace;border:1px solid #006eff;margin:0;height: 500px;overflow:auto;box-sizing:border-box;padding:5px;} h1 { font-weight: normal; color:#333;} button { cursor: pointer; display: inline-block; height: 2rem; padding: 0 1rem; outline: none; vertical-align: middle; color: #fff; background-color: #0091ea; text-align: center; border-radius: 0.125rem; -webkit-transition: all .25s ease-in-out; transition: all .25s ease-in-out; border: 1px solid #0091ea; font-size: 14px; white-space: nowrap; margin-right: 20px; margin-bottom: 10px; } button:hover { border-color: #36acef; background-color: #36acef; } hr {border: 0; border-top: 1px solid #006eff;} </style> </head> <body> <div class="title">ks3-js-sdk</div> <div class="page"> <div class="main-wrap"> <div class="main"></div> </div> <div class="siderbar"> <pre class="result"></pre> </div> </div> <script src="../dist/ks3-js-sdk.min.js"></script> <!-- <script src="../src/ks3.js"></script> --> <script src="./demo.js"></script> </body> </html>