-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (76 loc) · 2.75 KB
/
index.html
File metadata and controls
79 lines (76 loc) · 2.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!--
* @Description: 输入文件描述信息
* @Author: liu-wb
* @Date: 2021-12-11 13:10:20
* @LastEditTime: 2022-01-27 13:45:15
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport"
content="width=device-width, initial-scale=1.0,minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta http-equiv="X-UA-Compatible" content="ie=edge,chrome=1" />
<meta name="author" content="grit" />
<link rel="shortcut icon" href="http://qiniu.dreamsakula.top/images/20201021001407.png" />
<!-- <link rel="stylesheet" href="./scss/app.scss" /> -->
<title>AliveMusic</title>
<style type="text/css">
.icon {
width: 1em;
height: 1em;
vertical-align: -0.15em;
fill: currentColor;
overflow: hidden;
}
</style>
</head>
<body>
<div id="container">
<header>
<div class="header_nav_bg"></div>
<nav>
<img class="logo" src="./src/assets/img/logo.png" alt="" />
<ul class="clearfix nav_ul">
<li data-tab="home" class="header_nav active"><a>音乐馆</a></li>
<li data-tab="my_music" class="header_nav"><a>我的音乐</a></li>
<li data-tab="day_rec" class="header_nav"><a>日推</a></li>
<li data-tab="rank" class="header_nav"><a>排行榜</a></li>
<!-- <li class="header_nav"><a>歌单</a></li>-->
</ul>
<form class="search_form">
<input type="text" name="key" placeholder="搜索音乐" autocomplete="off" />
</form>
<span class="set_cookie">
设置cookie
<!-- <button class="delete_cookie"></button>-->
</span>
<form class="cookie_form">
<input type="text" name="cookie" placeholder="登录y.qq.com后 在控制台输入 document.cookie,将打印的字符串粘贴进来"
autocomplete="off" />
<input type="submit" value="设置" />
</form>
<!-- <span class="login">-->
<!-- 登录-->
<!-- <!– <button class="delete_cookie"></button>–>-->
<!-- </span>-->
</nav>
</header>
<main class="main">
<!--<!– 搜索–>-->
<!-- <section data-tab="search" class="search"></section>-->
</main>
</div>
<!--播放器-->
<div id="player">
<div class="player_prograss"></div>
</div>
<footer class="footer">
<span> 2020 <a href="https://dreamsakula.top/">Grit</a></span>
<br />
musicApi Powered by <a href="https://github.com/jsososo">jsososo</a>
</footer>
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- <script src="./src/app/app.js"></script> -->
</body>
</html>