70 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="cn">
 | 
						|
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
						|
    <title>B站热搜</title>
 | 
						|
    <style>
 | 
						|
        #list {
 | 
						|
            width: 100%;
 | 
						|
            text-align: center;
 | 
						|
            border-spacing: 0;
 | 
						|
            border: 0.4px solid black;
 | 
						|
        }
 | 
						|
 | 
						|
        #list tr {
 | 
						|
            height: min(1.85rem, 50px);
 | 
						|
        }
 | 
						|
 | 
						|
        #list td {
 | 
						|
            margin: 0;
 | 
						|
            border: 0.4px solid black;
 | 
						|
        }
 | 
						|
 | 
						|
        /* 热搜的 label 样式 */
 | 
						|
        .hotband-label {
 | 
						|
            color: white;
 | 
						|
            padding: 3px;
 | 
						|
            border-radius: 6px;
 | 
						|
            font-size: 10px;
 | 
						|
            display: inline-block;
 | 
						|
        }
 | 
						|
    </style>
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
    <div style="text-align: center;">
 | 
						|
        <h1>B站热搜榜</h1>
 | 
						|
        <hr>
 | 
						|
        <div>
 | 
						|
            显示字段:
 | 
						|
            <br>
 | 
						|
            <button id="btn_show_all">全选</button>
 | 
						|
            <button id="btn_show_none">全不选</button>
 | 
						|
            |
 | 
						|
            <button id="btn_show_concise">简洁</button>
 | 
						|
            <button id="btn_show_default">普通</button>
 | 
						|
            <button id="btn_show_detailed">详细</button>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
    <p id="latestUpdateTime" style="font-size: 12px; display: inline-block; vertical-align: middle;"></p>
 | 
						|
    <nobr>
 | 
						|
        <button id="btn_refresh">重新拉取</button>
 | 
						|
    </nobr>
 | 
						|
    <nobr>
 | 
						|
        <label for="auto_refresh">
 | 
						|
            <input type="checkbox" class="filter_checkbox" name="auto_refresh" id="auto_refresh">自动拉取<span
 | 
						|
                id="auto_refresh_countdown"></span>
 | 
						|
        </label>
 | 
						|
    </nobr>
 | 
						|
    <nobr>
 | 
						|
        <span id="update-finish-info" style="color: green; font-weight: bold; display: none;">拉取成功,数据已更新</span>
 | 
						|
    </nobr>
 | 
						|
    <table id="list"></table>
 | 
						|
    <script>
 | 
						|
    </script>
 | 
						|
</body>
 | 
						|
 | 
						|
</html> |