-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex.html
More file actions
118 lines (100 loc) · 4.56 KB
/
index.html
File metadata and controls
118 lines (100 loc) · 4.56 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>button-will-react | Prank Docs</title>
<!-- SEO Basics -->
<meta name="description" content="button-will-react is a Collecion of prank projects.">
<meta name="author" content="Ovi ren & Contributors">
<meta name="robots" content="index, follow">
<!-- Open Graph (for sharing on Discord, Facebook, etc.) -->
<meta property="og:type" content="website">
<meta property="og:title" content="button-will-react | Prank Docs">
<meta property="og:description" content="A collection of interactive elements and playful web pranks. Hover, move, and click to see the magic.">
<meta property="og:url" content="https://iamovi.github.io/button-will-react/">
<meta property="og:image" content="https://iamovi.github.io/button-will-react/button-will-react.jpg">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="button-will-react | Prank Docs">
<meta name="twitter:description" content="Playful interactive buttons and web pranks. Try it live!">
<meta name="twitter:image" content="https://iamovi.github.io/button-will-react/button-will-react.jpg">
<!-- Theme color (mobile browsers) -->
<meta name="theme-color" content="#0f172a">
<!-- Google Fonts: Inter and Inconsolata -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;700&family=Inter:wght@300;400;600;800&display=swap"
rel="stylesheet">
<!-- Bootstrap Icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css">
<!-- link to main stylesheet -->
<link rel="stylesheet" href="./src/style.css">
</head>
<body>
<nav class="header-bar">
<div class="nav-container">
<div class="nav-logo">
<a href="#">button-will-react</a>
</div>
<div class="nav-search">
<i class="bi bi-search"></i>
<input type="text" id="project-search" placeholder="Search pranks... or contributor"
aria-label="Search projects">
</div>
<div class="nav-actions">
<button id="theme-toggle" class="theme-toggle-btn" aria-label="Toggle dark mode">
<i class="bi bi-moon-stars"></i>
</button>
</div>
</div>
</nav>
<div class="container">
<header>
<h1>button-will-react</h1>
<p>A collection of interactive elements and lighthearted pranks that showcase the playfulness of the web. Move
your cursor and see what happens.</p>
<h4>Created by Ovi ren & Contributors</h4>
<div id="gh-stats" class="gh-stats">
<a href="https://github.com/iamovi/button-will-react" target="_blank" class="stat-item repo-link">
<i class="bi bi-github"></i> repo
</a>
<div class="stat-item">
<i class="bi bi-star"></i> <span id="star-count">...</span> stars
</div>
<div class="stat-item">
<i class="bi bi-git"></i> <span id="fork-count">...</span> forks
</div>
<div class="stat-item">
<i class="bi bi-people"></i> <span id="contributor-count">...</span> contributors
</div>
</div>
</header>
<!-- display all project inside project-grid div -->
<div id="project-grid" class="project-grid"></div>
<div class="maintenance-notice">
<p>This project is actively maintained, new projects will be added regular, look for new project in project GitHub
repository!</p>
</div>
<div class="contribute-notice">
<p>If you want to contribute your project visit <a
href="https://github.com/iamovi/button-will-react?tab=contributing-ov-file#contributing-to-button-will-react"
target="_blank">CONTRIBUTING.md</a></p>
</div>
<section class="cdn-section">
<h2>Quick Start with CDN</h2>
<p>Add the following script and class to any button to give it the "moving" effect.</p>
<code><script src="https://cdn.jsdelivr.net/gh/iamovi/button-will-react@cdn/dist/min/v1.0.0/move.min.js"></script></code>
<code><button class="button_will_react">Click Me!</button></code>
</section>
<div class="team-section">
</div>
<footer>
<p>Go to main repo: <a href="https://github.com/iamovi/button-will-react">iamovi/button-will-react</a></p>
<p>Under MIT License</p>
</footer>
</div>
<script type="module" src="./src/main.js"></script>
</body>
</html>