test/test.html
IrisVega 92461c40b2 new file: bg.png
new file:   jpg/1.jpg
	new file:   jpg/10.jpg
	new file:   jpg/2.jpg
	new file:   jpg/3.jpg
	new file:   jpg/4.jpg
	new file:   jpg/5.jpg
	new file:   jpg/6.jpg
	new file:   jpg/7.jpg
	new file:   jpg/8.jpg
	new file:   jpg/9.jpg
	new file:   jquery-3.7.1.min.js
	new file:   script.js
	new file:   styles.css
	modified:   test.html
	new file:   vue.js
2024-07-08 20:59:26 +08:00

44 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<script src="./jquery-3.7.1.min.js"></script>
<script src="./vue.js"></script>
<meta charset="UTF-8" />
<title>IrisVega's HTML Test</title>
<link rel="stylesheet" href="styles.css">
</head>
<body background="./bg.png" style="background-size:100% 100%; background-attachment: fixed;">
<div class="tab">
<button class="tablinks" data-tab="Tab1">日历</button>
<button id="addTab" class="addTab">+</button>
</div>
<div id="Tab1" class="tabcontent">
<h3 id="selectedDate">点击日期后,当前位置显示所点日期</h3>
<div class="cldBody">
<table>
<thead>
<tr>
<td colspan="7">
<div class="top">
<span id="left"><</span>
<span id="topDate"></span>
<span id="right">></span>
</div>
</td>
</tr>
<tr id="week">
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</thead>
<tbody id="tbody"></tbody>
</table>
</div>
<script src="script.js"></script>
</body>
</html>