forked from wuw111/wuw111.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
82 lines (74 loc) · 3.77 KB
/
home.html
File metadata and controls
82 lines (74 loc) · 3.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="U-craftBE Home传送点金币计算器">
<title>Home传送点计算器 - U-craftBE</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/home.css">
<link rel="shortcut icon" href="textures/favicon.png" type="image/png">
</head>
<body>
<nav class="navbar">
<div class="navbar-container">
<h1 class="logo">
<a href="index.html">U-craftBE 服务器</a>
</h1>
<ul class="nav-menu">
<li><a href="version.html">客户端</a></li>
<li><a href="tools.html">工具</a></li>
<li><a href="about.html">关于</a></li>
</ul>
</div>
</nav>
<section class="banner home-banner">
<div class="banner-content">
<h2>Home传送点计算器</h2>
<p>精确计算在不同坐标之间传送所需的金币数量</p>
<p>规划您的资源分配与传送策略</p>
</div>
</section>
<main class="content-container">
<article class="server-info">
<h2>Home传送点金币计算器</h2>
<div class="info-content">
<div class="calculator-container">
<div class="calculator-form">
<div class="form-group">
<label for="count">当前已有的Home数量:</label>
<input type="number" id="count" min="0" max="150" value="1" class="form-input">
<div class="input-hint">请输入0到150之间的数字</div>
</div>
<button id="calculateBtn" class="btn-primary calculator-button">计算金币消耗</button>
<div class="result" id="result"></div>
<div class="calculator-info">
<h3>计算规则说明</h3>
<p>此工具根据服务器内设定的公式计算新建Home传送点所需金币:</p>
<p><strong>计算公式:</strong>金币 = 200 × 当前Home数量 + 当前Home数量 × 10^(1.2 + 0.005 × 当前Home数量)</p>
<p>计算结果已四舍五入到最接近的整数。</p>
</div>
</div>
<div class="usage-tips">
<h3>使用提示</h3>
<ul>
<li>Home传送点是服务器中的重要功能,允许您快速传送到已设置的位置</li>
<li>每次新建Home传送点都需要消耗一定数量的金币</li>
<li>金币消耗会随着您已拥有的Home数量增加而增加</li>
<li>合理规划您的Home位置,避免不必要的金币浪费</li>
<li>计算结果仅供参考,实际消耗以服务器内为准</li>
</ul>
</div>
</div>
<div class="page-actions">
<a href="tools.html" class="back-link">← 返回工具列表</a>
<a href="index.html" class="back-link">返回服务器首页</a>
</div>
</div>
</article>
</main>
<script src="js/jquery.js"></script>
<script src="js/main.js"></script>
<script src="js/home.js"></script>
</body>
</html>