epub-reader/src/index.html

42 lines
953 B
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
<title></title>
<link href="/lib/css/reset-basic.css" rel="stylesheet">
<link href="/css/app.css" rel="stylesheet">
<script src="/js/app.js" type="module"></script>
</head>
<body class="noselect">
<div class="app" anot="app" :class="{loading: loading}">
<wc-scroll class="category">
<item
class="item"
:class="{active: curr === it.id}"
:for="it in list">
<strong :text="it.name"></strong>
<span class="num" :text="it.num"></span>
</item>
</wc-scroll>
<div class="detail" :class="{blur: !curr.code}">
</div>
<div class="drag-mask" ref="mask" :visible="isDragIn"></div>
</div>
</body>
</html>
E-pub books Reader.
JavaScript 75.1%
SCSS 13.9%
CSS 5.8%
HTML 5.2%