Skip to content

Commit

Permalink
add new tools
Browse files Browse the repository at this point in the history
  • Loading branch information
maojunxyz committed Mar 31, 2024
1 parent d8401e5 commit 1e6798d
Show file tree
Hide file tree
Showing 5 changed files with 439 additions and 7 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### Html Page
## Html Page
Some html pages with functional effects.

- Love1
Expand All @@ -10,7 +10,7 @@ Some html pages with functional effects.
> Text and heart-shaped confession, with a timer if the page is clicked to agree.

### games
## games

- Alphabet_matching

Expand All @@ -25,7 +25,7 @@ Some html pages with functional effects.
> Click on 1 to 25 in order.

### tools
## tools

- Log_keyword_hit

Expand All @@ -36,3 +36,6 @@ Some html pages with functional effects.
> Server Log Multi-Keyword Filtering and Multi-Color Highlighting Script Generation.

## reference

- [qr.html](https://github.com/six-two/qr.html)
1 change: 1 addition & 0 deletions assets/tailwind.min.css

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions assets/vue.min.js

Large diffs are not rendered by default.

15 changes: 11 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>工具站导航</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<link href="./assets/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-100">
<div id="app" class="container mx-auto py-8">
Expand All @@ -25,7 +25,7 @@ <h1 class="text-3xl font-semibold text-center mb-8">工具站导航</h1>
<p v-if="filteredTools.length === 0" class="text-center mt-8 text-gray-500">未找到匹配的工具</p>
</div>

<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js"></script>
<script src="./assets/vue.min.js"></script>
<script>
new Vue({
el: '#app',
Expand All @@ -39,10 +39,17 @@ <h1 class="text-3xl font-semibold text-center mb-8">工具站导航</h1>
{ name: "字母匹配游戏", image: "assets/image.png", link: "Alphabet_matching.html" },
{ name: "点击红框游戏", image: "assets/image.png", link: "Red_square.html" },
{ name: "舒尔特方格游戏", image: "assets/image.png", link: "Schulte_square.html" },
{ name: "Ctool开发工具箱", image: "https://ctool.dev/icon/icon_512.png", link: "https://ctool.dev/tool.html#/tool/hash?category=encryption" },
{ name: "Wifi连接卡", image: "https://wificard.io/images/wifi.ico", link: "https://wificard.io/" },
{ name: "离线二维码生成", image: "assets/image.png", link: "qrCode.html" },
{ name: "根据地址获取街道名称", image: "assets/image.png", link: "https://scorpionfree98.github.io/fetch_address_detail/Geocoder.html" },
{ name: "在线图片压缩", image: "https://tinypng.com/images/apple-touch-icon.png", link: "https://tinypng.com/" },
{ name: "Nginx在线配置工具", image: "https://www.digitalocean.com/_next/static/media/android-chrome-192x192.f09059d8.png", link: "https://www.digitalocean.com/community/tools/nginx" },
{ name: "算法可视化", image: "https://algorithm-visualizer.org/favicon.png", link: "https://algorithm-visualizer.org/" },
{ name: "Yaml转化Properties", image: "assets/image.png", link: "https://upendra-thunuguntla.github.io/mule-yaml-tools/index.html" },



// 添加更多工具

]
},
computed: {
Expand Down
Loading

0 comments on commit 1e6798d

Please sign in to comment.