word-games-theme 1.2.1 → 1.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_data/wordgames/en/word-game-play.json +6 -43
- data/_includes/section/home2.html +2 -1
- data/_includes/word-game/word-game-generator-online.html +8 -5
- data/_includes/word-game/word-game-play.html +178 -55
- data/_includes/wordle-solver/wordle-solver.html +11 -0
- data/assets/css/game.css +307 -7
- data/assets/css/wordleSolver.css +11 -0
- data/assets/images/close.png +0 -0
- data/assets/images/copy.svg +1 -0
- data/assets/images/facebooks.svg +1 -0
- data/assets/images/twitters.svg +1 -0
- data/assets/images/whatsapp.svg +1 -0
- data/assets/js/confetti.js +130 -0
- data/assets/js/createWordle.js +39 -5
- data/assets/js/game.js +260 -31
- metadata +8 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2ba461b64b2b6e663800468eb9d2d9be7e6028c3fd41284afe8e603a81684e6a
|
4
|
+
data.tar.gz: 685513c7884497a477dd24c4472f8374de4d7448c9238d86d3e2af849292730f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d560ac8f4a765b73878c1dacdac033b049d73c63b35ffaf72f5629168fb900ec8a4c857d47ad34ab133f6e77f92634e459f125a900c361ccf8c417002347391
|
7
|
+
data.tar.gz: 66a70a6a0fcf24c90cc86247e7f377738fd4486bcf7d204c229a5410bbb9a6924ba328484c1897cdd6a8880f8c322584b8a788a4d1322b3b1108f9b1dedb4ba2
|
@@ -1,8 +1,8 @@
|
|
1
1
|
{
|
2
|
-
"title": "
|
3
|
-
"h1": "
|
4
|
-
"h2": "
|
5
|
-
"meta": "
|
2
|
+
"title": "Make Your Own Wordle",
|
3
|
+
"h1": "",
|
4
|
+
"h2": "",
|
5
|
+
"meta": "Guess this wordle in 6 tries. You can also share with your friends and challenge them !",
|
6
6
|
"featureNo": "02",
|
7
7
|
"feature_title": "Features",
|
8
8
|
"blogNo": "03",
|
@@ -11,46 +11,9 @@
|
|
11
11
|
"Faq_title": "FAQ",
|
12
12
|
"aboutNo": "05",
|
13
13
|
"about_title": "About",
|
14
|
-
"featureList": [
|
15
|
-
{
|
16
|
-
"feature_heading": "",
|
17
|
-
"feature_text": "",
|
18
|
-
"fa_class": "../assets/images/star.svg"
|
19
|
-
},
|
20
|
-
{
|
21
|
-
"feature_heading": "",
|
22
|
-
"feature_text": "",
|
23
|
-
"fa_class": "../assets/images/star.svg"
|
24
|
-
},
|
25
|
-
{
|
26
|
-
"feature_heading": "",
|
27
|
-
"feature_text": "",
|
28
|
-
"fa_class": "../assets/images/star.svg"
|
29
|
-
},
|
30
|
-
{
|
31
|
-
"feature_heading": "",
|
32
|
-
"feature_text": "",
|
33
|
-
"fa_class": "../assets/images/star.svg"
|
34
|
-
},
|
35
|
-
{
|
36
|
-
"feature_heading": "",
|
37
|
-
"feature_text": "",
|
38
|
-
"fa_class": "../assets/images/star.svg"
|
39
|
-
},
|
40
|
-
{
|
41
|
-
"feature_heading": "",
|
42
|
-
"feature_text": "",
|
43
|
-
"fa_class": "../assets/images/star.svg"
|
44
|
-
}
|
45
|
-
],
|
46
|
-
"faqList": [
|
47
|
-
{
|
48
|
-
"Question": "",
|
49
|
-
"Answer": ""
|
50
|
-
}
|
51
|
-
],
|
52
14
|
"jsfilepaths": [
|
53
|
-
"/assets/js/game.js"
|
15
|
+
"/assets/js/game.js",
|
16
|
+
"/assets/js/confetti.js"
|
54
17
|
],
|
55
18
|
"cssfilepaths": [
|
56
19
|
"/assets/css/game.css"
|
@@ -96,7 +96,8 @@
|
|
96
96
|
</form>
|
97
97
|
{%- if page.wordle == 'solver' -%}
|
98
98
|
<h2 class="m-0 mt-4 text-center" style="font-size:16px">
|
99
|
-
<a
|
99
|
+
<a onclick="gtag('event', 'click', {'event_category': 'Link click', 'event_label': 'Try Wordle Solver'});"
|
100
|
+
style="color:#000" href="/wordle-solver">Solve wordle quickly using our wordle solver</a>
|
100
101
|
</h2>
|
101
102
|
{%- endif -%}
|
102
103
|
</div>
|
@@ -2,11 +2,14 @@
|
|
2
2
|
<div class="col-md-6 mx-auto">
|
3
3
|
<div class="create-wordle text-center">
|
4
4
|
<div class="wordle-game-generator">
|
5
|
+
<div class="alert-container hide">
|
6
|
+
<span id="errorMsg"></span>
|
7
|
+
</div>
|
5
8
|
<form id="create-wordle-form">
|
6
9
|
<img src="/assets/images/wordle.png" alt="wordswithletters" style="width:35px; height:35px;">
|
7
|
-
<h4 class="font-weight-bolder mt-
|
10
|
+
<h4 class="font-weight-bolder mt-4">Make your own wordle</h4>
|
8
11
|
<input autocomplete="off" type="text" class="form-control custom-word"
|
9
|
-
placeholder="Enter
|
12
|
+
placeholder="Enter Up to 5 Letters?" name="custom-word" required maxlength="5">
|
10
13
|
<button type="submit" class="btn generate-word-game-link">Generate Link</button>
|
11
14
|
<span class="open-popup" data-toggle="modal" data-target="#exampleModal"></span>
|
12
15
|
</form>
|
@@ -24,12 +27,12 @@
|
|
24
27
|
<span class="times-icon">×</span>
|
25
28
|
</button>
|
26
29
|
</div>
|
27
|
-
<div class="modal-body text-center
|
28
|
-
<h3 class="font-weight-bolder mb-
|
30
|
+
<div class="modal-body text-center" style="padding:5rem 0">
|
31
|
+
<h3 class="font-weight-bolder mb-4">Share this Word's Link</h3>
|
29
32
|
<div class="wordle-game-play-links">
|
30
33
|
<a style="font-size: 13px;" class="wordle-game-link"></a>
|
31
34
|
<br><br>
|
32
|
-
<button type="button" class="btn copy-btn">Copy Link</button>
|
35
|
+
<button type="button" class="btn copy-btn mt-2">Copy Link</button>
|
33
36
|
<!-- <button type="button" class="btn btn-primary">Play Random Word</button> -->
|
34
37
|
</div>
|
35
38
|
</div>
|
@@ -1,68 +1,191 @@
|
|
1
1
|
<div class="game">
|
2
2
|
<div class="game-container">
|
3
|
-
<div class="
|
4
|
-
|
3
|
+
<div class="d-flex justify-content-center align-items-center">
|
4
|
+
<div style="padding-top:4px; cursor: pointer;" data-toggle="modal" data-target="#how-to-play-wordle">
|
5
|
+
<i style="font-size:20px" class="bi bi-question-circle"></i>
|
6
|
+
</div>
|
7
|
+
<h1 class="text-center font-weight-bolder mb-0 my-4">
|
8
|
+
<a class="word-generator-link" href="/word-game-generator-online"> Make your own wordle </a>
|
9
|
+
</h1>
|
10
|
+
|
11
|
+
<!-- <div data-toggle="modal" data-target="#exampleModal">
|
12
|
+
<i style="font-size:20px" class="bi bi-question-circle"></i>
|
13
|
+
</div> -->
|
14
|
+
|
15
|
+
</div>
|
16
|
+
|
17
|
+
|
18
|
+
<div class="alert-container hide">
|
19
|
+
<span id="errorMsg"></span>
|
20
|
+
</div>
|
21
|
+
<div class="game-board">
|
22
|
+
<div class="tile"></div>
|
23
|
+
<div class="tile"></div>
|
24
|
+
<div class="tile"></div>
|
25
|
+
<div class="tile"></div>
|
26
|
+
<div class="tile"></div>
|
27
|
+
<div class="tile"></div>
|
28
|
+
<div class="tile"></div>
|
29
|
+
<div class="tile"></div>
|
30
|
+
<div class="tile"></div>
|
31
|
+
<div class="tile"></div>
|
32
|
+
<div class="tile"></div>
|
33
|
+
<div class="tile"></div>
|
34
|
+
<div class="tile"></div>
|
35
|
+
<div class="tile"></div>
|
36
|
+
<div class="tile"></div>
|
37
|
+
<div class="tile"></div>
|
38
|
+
<div class="tile"></div>
|
39
|
+
<div class="tile"></div>
|
40
|
+
<div class="tile"></div>
|
41
|
+
<div class="tile"></div>
|
42
|
+
<div class="tile"></div>
|
43
|
+
<div class="tile"></div>
|
44
|
+
<div class="tile"></div>
|
45
|
+
<div class="tile"></div>
|
46
|
+
<div class="tile"></div>
|
47
|
+
<div class="tile"></div>
|
48
|
+
<div class="tile"></div>
|
49
|
+
<div class="tile"></div>
|
50
|
+
<div class="tile"></div>
|
51
|
+
<div class="tile"></div>
|
52
|
+
</div>
|
53
|
+
<div data-keyboard class="game-keyboard mt-3">
|
5
54
|
<div class="game-keyboard-row">
|
6
|
-
<
|
7
|
-
<
|
8
|
-
<
|
9
|
-
<
|
10
|
-
<
|
11
|
-
<
|
12
|
-
<
|
13
|
-
<
|
14
|
-
<
|
15
|
-
<
|
55
|
+
<button role="button" class="key-btn" data-key="Q">Q</button>
|
56
|
+
<button role="button" class="key-btn" data-key="W">W</button>
|
57
|
+
<button role="button" class="key-btn" data-key="E">E</button>
|
58
|
+
<button role="button" class="key-btn" data-key="R">R</button>
|
59
|
+
<button role="button" class="key-btn" data-key="T">T</button>
|
60
|
+
<button role="button" class="key-btn " data-key="Y">Y</button>
|
61
|
+
<button role="button" class="key-btn" data-key="U">U</button>
|
62
|
+
<button role="button" class="key-btn" data-key="I">I</button>
|
63
|
+
<button role="button" class="key-btn" data-key="O">O</button>
|
64
|
+
<button role="button" class="key-btn" data-key="P">P</button>
|
16
65
|
</div>
|
17
66
|
<div class="game-keyboard-row">
|
18
|
-
<
|
19
|
-
<
|
20
|
-
<
|
21
|
-
<
|
22
|
-
<
|
23
|
-
<
|
24
|
-
<
|
25
|
-
<
|
26
|
-
<
|
67
|
+
<button role="button" class="key-btn" data-key="A">A</button>
|
68
|
+
<button role="button" class="key-btn" data-key="S">S</button>
|
69
|
+
<button role="button" class="key-btn" data-key="D">D</button>
|
70
|
+
<button role="button" class="key-btn" data-key="F">F</button>
|
71
|
+
<button role="button" class="key-btn" data-key="G">G</button>
|
72
|
+
<button role="button" class="key-btn" data-key="H">H</button>
|
73
|
+
<button role="button" class="key-btn" data-key="J">J</button>
|
74
|
+
<button role="button" class="key-btn" data-key="K">K</button>
|
75
|
+
<button role="button" class="key-btn" data-key="L">L</button>
|
27
76
|
</div>
|
28
77
|
<div class="game-keyboard-row">
|
29
|
-
<
|
30
|
-
<
|
31
|
-
<
|
32
|
-
<
|
33
|
-
<
|
34
|
-
<
|
35
|
-
<
|
36
|
-
<
|
37
|
-
<
|
78
|
+
<button role="button" class="key-btn backspace" data-delete>⌫</button>
|
79
|
+
<button role="button" class="key-btn" data-key="Z">Z</button>
|
80
|
+
<button role="button" class="key-btn" data-key="X">X</button>
|
81
|
+
<button role="button" class="key-btn" data-key="C">C</button>
|
82
|
+
<button role="button" class="key-btn" data-key="V">V</button>
|
83
|
+
<button role="button" class="key-btn" data-key="B">B</button>
|
84
|
+
<button role="button" class="key-btn letter-absent" data-key="N">N</button>
|
85
|
+
<button role="button" class="key-btn" data-key="M">M</button>
|
86
|
+
<button role="button" class="key-btn enter" data-enter>Enter</button>
|
38
87
|
</div>
|
39
88
|
|
40
89
|
</div>
|
90
|
+
<span class="open-popup" data-toggle="modal" data-target="#exampleModal"></span>
|
41
91
|
</div>
|
42
92
|
</div>
|
43
93
|
|
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
|
-
|
94
|
+
<div class="modal fade modalWrapper" id="exampleModal">
|
95
|
+
<div class="modal-dialog" style="max-width:400px">
|
96
|
+
<div class="modal-content">
|
97
|
+
<div class="modal-header p-2" style="background-color: #f8f9fa;">
|
98
|
+
<div class="gameResult"></div>
|
99
|
+
<button type="button" class="close" style="position: absolute; right: 0; top:-3px;"
|
100
|
+
data-dismiss="modal">
|
101
|
+
<span class="times-icon">×</span>
|
102
|
+
</button>
|
103
|
+
</div>
|
104
|
+
<div class="modal-body text-center" style="padding:2rem 0px 4rem 0">
|
105
|
+
<!-- <div class="iconWinLose tick"></div> -->
|
106
|
+
<div class="result-content">
|
107
|
+
<span id="answer" style="font-size: 20px;">You guessed the word</span>
|
108
|
+
<div id="result-guess-word" class="guess-word"></div>
|
109
|
+
</div>
|
110
|
+
<div class="wordle-game-play-links pt-4" style="padding:0 30px">
|
111
|
+
<a class="wordle-game-restart" href="/word-game-generator-online">
|
112
|
+
RESTART
|
113
|
+
</a>
|
114
|
+
<a class="wordle-game-share-link wordle-game-button font-weight-bolder">
|
115
|
+
<img src="/assets/images/copy.svg" alt="copy-link" style="width:20px; margin:0px 5px;">
|
116
|
+
Share this Wordle Link</a>
|
117
|
+
<a class="wordle-game-copy-link wordle-game-button">
|
118
|
+
<img src="/assets/images/copy.svg" alt="copy-link" style="width:20px; margin:0px 5px;">
|
119
|
+
Challenge a friend to this word</a>
|
120
|
+
|
121
|
+
</div>
|
122
|
+
|
123
|
+
<div class="pt-4" style="font-size: 14px;">Share it with your friends</div>
|
124
|
+
<div class="social-sharing-icons d-flex">
|
125
|
+
<a class="facebook-share-link" target="_blank">
|
126
|
+
<img class="share-icon" src="/assets/images/facebooks.svg" alt="facebook-share">
|
127
|
+
</a>
|
128
|
+
<a class="twitter-share-link" target="_blank">
|
129
|
+
<img class="share-icon" src="/assets/images/twitters.svg" alt="twitter-share">
|
130
|
+
</a>
|
131
|
+
|
132
|
+
<a class="whatsapp-share-link" data-action="share/whatsapp/share" target="_blank"><img
|
133
|
+
class="share-icon" src="/assets/images/whatsapp.svg" alt="whatsapp-share"> </a>
|
134
|
+
|
135
|
+
|
136
|
+
</div>
|
137
|
+
</div>
|
138
|
+
</div>
|
139
|
+
</div>
|
140
|
+
</div>
|
141
|
+
|
142
|
+
|
143
|
+
<div class="modal fade" id="how-to-play-wordle" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
|
144
|
+
<div class="modal-dialog wordletip" style="top:20px !important">
|
145
|
+
<div class="modal-content">
|
146
|
+
<div class="modal-header px-4 p-2">
|
147
|
+
<h5 class="modal-title" id="exampleModalLabel">How to Play</h5>
|
148
|
+
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
149
|
+
<span aria-hidden="true">×</span>
|
150
|
+
</button>
|
151
|
+
</div>
|
152
|
+
<div class="modal-body p-2 px-4 py-4" style="font-size: 12px;">
|
153
|
+
<p>Guess the <strong>WORDLE</strong> in six tries.</p>
|
154
|
+
<p>Each guess must be a valid five-letter word. Hit the enter button to submit.</p>
|
155
|
+
<p>After each guess, the color of the tiles will change to show how close your guess was to the
|
156
|
+
word.</p>
|
157
|
+
<div id="wordle-examples">
|
158
|
+
<p><strong>Examples</strong></p>
|
159
|
+
<p><span class="wordle-game-spot wordle-game-correct" title="W"></span><span
|
160
|
+
class="wordle-game-spot" title="E"></span><span class="wordle-game-spot"
|
161
|
+
title="A"></span><span class="wordle-game-spot" title="R"></span><span
|
162
|
+
class="wordle-game-spot" title="Y"></span></p>
|
163
|
+
<p>The letter <strong>W</strong> is in the word and in the correct spot.</p>
|
164
|
+
<p><span class="wordle-game-spot" title="P"></span><span
|
165
|
+
class="wordle-game-spot wordle-game-present" title="I"></span><span class="wordle-game-spot"
|
166
|
+
title="L"></span><span class="wordle-game-spot" title="L"></span><span
|
167
|
+
class="wordle-game-spot" title="S"></span></p>
|
168
|
+
<p>The letter <strong>I</strong> is in the word but in the wrong spot.</p>
|
169
|
+
<p><span class="wordle-game-spot" title="V"></span><span class="wordle-game-spot"
|
170
|
+
title="A"></span><span class="wordle-game-spot" title="G"></span><span
|
171
|
+
class="wordle-game-spot wordle-game-absent" title="U"></span><span class="wordle-game-spot"
|
172
|
+
title="E"></span></p>
|
173
|
+
<p>The letter <strong>U</strong> is not in the word in any spot.</p>
|
174
|
+
</div>
|
175
|
+
<p>A new WORDLE can make easily yourself any time! </p>
|
176
|
+
|
177
|
+
<div class="wordl_ani">
|
178
|
+
<a style="background: #007bff;
|
179
|
+
color: #fff;
|
180
|
+
text-decoration: underline;
|
181
|
+
padding: 14px 15px;
|
182
|
+
border-radius: 5px;
|
183
|
+
display: block;
|
184
|
+
width: 170px;" href="/word-game-generator-online"> Make your own wordle </a>
|
185
|
+
|
186
|
+
</div>
|
187
|
+
|
188
|
+
</div>
|
189
|
+
</div>
|
190
|
+
</div>
|
191
|
+
</div>
|
@@ -3,6 +3,17 @@
|
|
3
3
|
<div class="col-md-10 mx-auto ws">
|
4
4
|
<div style="font-size: 15px;" class="alert errMessage" role="alert"></div>
|
5
5
|
<form name="verify" class="forms_data">
|
6
|
+
|
7
|
+
<a href="/word-game-generator-online"
|
8
|
+
onclick="gtag('event', 'click', {'event_category': 'Link click', 'event_label': 'Make Your Own Wordle'});"
|
9
|
+
class="createWordleLink text-white">
|
10
|
+
|
11
|
+
<span class="text-white">
|
12
|
+
Make Your Own Wordle
|
13
|
+
</span>
|
14
|
+
|
15
|
+
</a>
|
16
|
+
|
6
17
|
<div class="form-group">
|
7
18
|
<label for="greenLetters" class="my-1 p-0 wordleSolver-label">Enter green letters at correct
|
8
19
|
position</label>
|