guoyu/Archive/fronted_uniapp_docs/test-icons.html

54 lines
1.5 KiB
HTML
Raw Normal View History

<!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>