1 Star 0 Fork 3

北极大企鹅 / img2txt

forked from Gitee 极速下载 / img2txt 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
template.jinja 769 Bytes
一键复制 编辑 原始数据 按行查看 历史
hit9 提交于 2015-10-01 17:26 . Increase speed
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<style type="text/css">
pre {
white-space: pre-wrap;
line-height: 1.0;
font-size: 7px;
font-family: 'Menlo', 'Courier New', 'Consola';
}
</style>
</head>
<body>
{% for string in strings %}
<pre id="{{ loop.index }}" {% if loop.index > 0 %}style="display: none"{% endif %}>{{ string }}</pre>
{% endfor %}
</body>
</html>
<script>
var id = 1;
setInterval(function() {
document.getElementById(id.toString()).style.display = 'none';
id = id + 1;
if (id > {{ strings | length }}) id = 1;
console.log(id)
document.getElementById(id.toString()).style.display = 'block';
}, 65);
</script>
Python
1
https://gitee.com/mrliuNumberOne/img2txt.git
git@gitee.com:mrliuNumberOne/img2txt.git
mrliuNumberOne
img2txt
img2txt
gh-pages

搜索帮助