代码拉取完成,页面将自动刷新
同步操作将从 ele-cat/vue3-wechat-tool 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>微信对话生成器</title>
<style>
.visual-loading-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 999999999;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
color: #333;
font-size: 14px;
}
.visual-circle-path {
stroke: #0f62fe;
/* 给画笔设置一个颜色 */
stroke-width: 2;
/* 设置线条的宽度 */
stroke-dasharray: 95, 126;
/* 设置实现长95,虚线长126 */
stroke-dashoffset: 0;
/* 设置虚线的偏移位置 */
animation: visual-loading-dash 1.5s ease-in-out infinite;
}
@keyframes visual-loading-dash {
0% {
stroke-dasharray: 1, 126;
/* 实线部分1,虚线部分126 */
stroke-dashoffset: 0;
/* 前面1/126显示实线,后面125显示空白 */
}
50% {
stroke-dasharray: 95, 126;
/* 实线部分95,虚线部分126 */
stroke-dashoffset: -31px
/* 顺时针偏移31/126,即前31/126显示空白,后面3/4显示线条 */
}
to {
stroke-dasharray: 6, 120;
/* 实线部分6,虚线部分120 */
stroke-dashoffset: -120px;
/* 最后顺时针偏移120/126,即前120/126显示空白,后面6点显示线条部分 */
}
}
.visual-loading-svg {
width: 2.5em;
height: 2.5em;
max-width: 50px;
/* 设置svg显示区域大小 */
max-height: 50px;
animation: visual-loading-rotate 1.5s infinite ease-in-out;
/* 给svg也加上一个旋转动画 */
margin-bottom: 20px;
}
@keyframes visual-loading-rotate {
to {
transform: rotate(1turn);
/* 旋转1圈 */
}
}
</style>
</head>
<body>
<div id="app">
<div class="visual-loading-container">
<svg viewBox="0 0 50 50" class="visual-loading-svg">
<circle cx="25" cy="25" r="20" fill="none" class="visual-circle-path"></circle>
</svg>
<p>正在努力加载页面,请耐心等候...</p>
</div>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。