54 lines
1.5 KiB
HTML
54 lines
1.5 KiB
HTML
|
|
<!DOCTYPE html>
|
|||
|
|
<html>
|
|||
|
|
<head>
|
|||
|
|
<meta charset="UTF-8">
|
|||
|
|
<title>图标测试</title>
|
|||
|
|
<style>
|
|||
|
|
body {
|
|||
|
|
padding: 20px;
|
|||
|
|
font-size: 20px;
|
|||
|
|
}
|
|||
|
|
.icon-test {
|
|||
|
|
margin: 20px;
|
|||
|
|
padding: 20px;
|
|||
|
|
border: 1px solid #ccc;
|
|||
|
|
}
|
|||
|
|
</style>
|
|||
|
|
</head>
|
|||
|
|
<body>
|
|||
|
|
<h1>图标显示测试</h1>
|
|||
|
|
|
|||
|
|
<div class="icon-test">
|
|||
|
|
<h3>搜索图标</h3>
|
|||
|
|
<span style="font-size: 36px;">🔍</span>
|
|||
|
|
<p>如果能看到放大镜,说明emoji支持正常</p>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="icon-test">
|
|||
|
|
<h3>时钟图标</h3>
|
|||
|
|
<span style="font-size: 28px;">🕒</span>
|
|||
|
|
<p>如果能看到时钟,说明emoji支持正常</p>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="icon-test">
|
|||
|
|
<h3>用户图标</h3>
|
|||
|
|
<span style="font-size: 40px;">👤</span>
|
|||
|
|
<p>如果能看到人形,说明emoji支持正常</p>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="icon-test">
|
|||
|
|
<h3>菜单图标</h3>
|
|||
|
|
<span style="font-size: 36px;">📝</span>
|
|||
|
|
<span style="font-size: 36px;">📊</span>
|
|||
|
|
<span style="font-size: 36px;">🚪</span>
|
|||
|
|
<p>如果都能正常显示,说明设备支持emoji</p>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<script>
|
|||
|
|
console.log('图标测试页面加载成功');
|
|||
|
|
console.log('如果所有图标都能显示,说明你的代码修改是正确的');
|
|||
|
|
console.log('如果在这个HTML都显示不了,说明是设备系统问题');
|
|||
|
|
</script>
|
|||
|
|
</body>
|
|||
|
|
</html>
|