UNPKG

jsdk-offical

Version:

JSDK is the most comprehensive TypeScript framework, like JDK.

50 lines (43 loc) 1.46 kB
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no" /> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta http-equiv="Cache-Control" content="no-cache,no-store, must-revalidate" /> <meta http-equiv="Pragma" content="no-cache" /> <meta http-equiv="Expires" content="0" /> <title>JSDK Example</title> <link rel="shortcut icon" href="#" /> <script src="/jsdk/dist/jscore.js"></script> <script src="/jsdk/dist/jsdk-config.js?_=25"></script> <style> * { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } button { width: 130px; height: 50px; } </style> </head> <body> <h2> Open the page on a Mobile browser </h2> <div> <button id="btnTap">Tap</button> <button id="btnSingleTap">Single Tap</button> <button id="btnDoubleTap">Double Tap</button> <button id="btnLongTap">Long Tap(>750ms)</button> </div> <div id="info" style="background-color: yellow;"></div> <script src="../../env.js"></script> <script src="tap.js"></script> </body> </html>