Skip to content

Commit f4e9d1e

Browse files
[mirotalkc2c] - add bouncing dots animation to waiting screen, update dep
1 parent ba67bc1 commit f4e9d1e

7 files changed

Lines changed: 380 additions & 359 deletions

File tree

.env.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ====================================================
2-
# MiroTalk C2C v.1.2.85 - Environment Configuration
2+
# MiroTalk C2C v.1.2.86 - Environment Configuration
33
# ====================================================
44

55
# App environment

backend/server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* @license For private project or commercial purposes contact us at: license.mirotalk@gmail.com or purchase it directly via Code Canyon:
1010
* @license https://codecanyon.net/item/mirotalk-c2c-webrtc-real-time-cam-2-cam-video-conferences-and-screen-sharing/43383005
1111
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
12-
* @version 1.2.85
12+
* @version 1.2.86
1313
*/
1414

1515
require('dotenv').config();

frontend/css/client.css

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,43 @@ body {
138138
}
139139
}
140140

141+
/* Waiting dots animation */
142+
.waiting-dots {
143+
display: flex;
144+
justify-content: center;
145+
gap: 8px;
146+
margin-bottom: 25px;
147+
}
148+
149+
.waiting-dots .dot {
150+
width: 10px;
151+
height: 10px;
152+
border-radius: 50%;
153+
background: #fff;
154+
animation: waiting-bounce 1.4s ease-in-out infinite;
155+
}
156+
157+
.waiting-dots .dot:nth-child(2) {
158+
animation-delay: 0.2s;
159+
}
160+
161+
.waiting-dots .dot:nth-child(3) {
162+
animation-delay: 0.4s;
163+
}
164+
165+
@keyframes waiting-bounce {
166+
0%,
167+
80%,
168+
100% {
169+
opacity: 0.3;
170+
transform: scale(0.8);
171+
}
172+
40% {
173+
opacity: 1;
174+
transform: scale(1.2);
175+
}
176+
}
177+
141178
.grid-buttons {
142179
display: grid;
143180
grid-template-columns: repeat(5, 1fr); /* 4 equal-width columns */

frontend/html/client.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,11 @@ <h1 class="pulsate">Waiting</h1>
8282
<pre>
8383
Waiting for users to join.
8484
</pre>
85+
<div class="waiting-dots">
86+
<span class="dot"></span>
87+
<span class="dot"></span>
88+
<span class="dot"></span>
89+
</div>
8590
</div>
8691
<div class="grid-buttons">
8792
<button id="shareRoomBtn" class="fas fa-share-nodes"></button>

frontend/js/client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* @license For private project or commercial purposes contact us at: license.mirotalk@gmail.com or purchase it directly via Code Canyon:
1010
* @license https://codecanyon.net/item/mirotalk-c2c-webrtc-real-time-cam-2-cam-video-conferences-and-screen-sharing/43383005
1111
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
12-
* @version 1.2.85
12+
* @version 1.2.86
1313
*/
1414

1515
const roomId = new URLSearchParams(window.location.search).get('room');

package-lock.json

Lines changed: 332 additions & 353 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mirotalkc2c",
3-
"version": "1.2.85",
3+
"version": "1.2.86",
44
"description": "A free WebRTC Cam-2-Cam browser-based video calls",
55
"main": "server.js",
66
"scripts": {
@@ -40,12 +40,12 @@
4040
"dependencies": {
4141
"@mattermost/client": "11.5.0",
4242
"@ngrok/ngrok": "1.7.0",
43-
"@sentry/node": "^10.46.0",
43+
"@sentry/node": "^10.47.0",
4444
"colors": "^1.4.0",
4545
"compression": "^1.8.1",
4646
"cors": "^2.8.6",
4747
"dompurify": "^3.3.3",
48-
"dotenv": "^17.3.1",
48+
"dotenv": "^17.4.0",
4949
"express": "^5.2.1",
5050
"express-openid-connect": "^2.20.1",
5151
"he": "^1.2.0",

0 commit comments

Comments
 (0)