2016-06-16 20:49:46 +00:00
|
|
|
<!DOCTYPE html>
|
2017-04-27 21:29:43 +00:00
|
|
|
<!-- crc32.js (C) 2014-present SheetJS http://sheetjs.com -->
|
2016-06-16 20:49:46 +00:00
|
|
|
<!-- vim: set ts=2: -->
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
|
|
<title>JS-CRC32 Live Demo</title>
|
|
|
|
<style>
|
|
|
|
#drop{
|
|
|
|
border:2px dashed #bbb;
|
|
|
|
-moz-border-radius:5px;
|
|
|
|
-webkit-border-radius:5px;
|
|
|
|
border-radius:5px;
|
|
|
|
padding:25px;
|
|
|
|
text-align:center;
|
|
|
|
font:20pt bold,"Vollkorn";color:#bbb
|
|
|
|
}
|
|
|
|
#rawdata{
|
|
|
|
width:100%;
|
|
|
|
}
|
2017-04-27 21:29:43 +00:00
|
|
|
a { text-decoration: none }
|
2016-06-16 20:49:46 +00:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
2017-04-27 21:29:43 +00:00
|
|
|
<pre>
|
|
|
|
<b><a href="http://sheetjs.com/bits">SheetJS JS-CRC32 Live Demo</a></b>
|
|
|
|
(text works back to IE6; drag and drop works back to IE10)
|
|
|
|
(<b>This demo loads the entire file at once!</b> For newer browsers, <a href="large.html">try the large file demo</a>)
|
2016-06-16 20:49:46 +00:00
|
|
|
|
2018-01-17 21:27:59 +00:00
|
|
|
<a href="https://git.io/crc32">Source Code Repo</a>
|
|
|
|
<a href="https://git.io/crc32_issues">Issues? Something look weird? Click here and report an issue</a>
|
2017-04-27 21:29:43 +00:00
|
|
|
<br />
|
2016-06-16 20:49:46 +00:00
|
|
|
<div id="drop">Drop a text file to compute the CRC-32 checksum</div>
|
2017-04-27 21:29:43 +00:00
|
|
|
<input type="file" name="xlfile" id="xlf" /> ... or click here to select a file
|
|
|
|
|
|
|
|
<textarea id="rawdata">... or paste text here</textarea>
|
2016-06-16 20:49:46 +00:00
|
|
|
<input type="button" id="dotext" value="Click here to process the text"/><br />
|
2017-04-27 21:29:43 +00:00
|
|
|
<b>Advanced Demo Options:</b>
|
2018-01-17 21:27:59 +00:00
|
|
|
Use readAsBinaryString: (when available) <input type="checkbox" name="userabs" checked><br />
|
2017-04-27 21:29:43 +00:00
|
|
|
</pre>
|
|
|
|
<pre id="out"></pre>
|
2016-06-16 20:49:46 +00:00
|
|
|
<br />
|
|
|
|
<script type="text/javascript">/* jshint browser: true */</script>
|
2016-10-08 18:48:03 +00:00
|
|
|
<script src="shim.js"></script>
|
2016-06-16 20:49:46 +00:00
|
|
|
<script src="crc32.js"></script>
|
|
|
|
<script src="demo/browser.flow.js"></script>
|
|
|
|
<script type="text/javascript">
|
2018-01-17 21:27:59 +00:00
|
|
|
/*eslint-env browser */
|
2016-06-16 20:49:46 +00:00
|
|
|
var _gaq = _gaq || [];
|
|
|
|
_gaq.push(['_setAccount', 'UA-36810333-1']);
|
|
|
|
_gaq.push(['_trackPageview']);
|
|
|
|
|
|
|
|
(function() {
|
|
|
|
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
|
|
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
|
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|