16 lines
375 B
JavaScript
16 lines
375 B
JavaScript
document.addEventListener('DOMContentLoaded', () => {
|
|
var socket = io("https://danby.aniere.fr:3000");
|
|
|
|
socket.on("update-count", (data) => {
|
|
document.getElementById("value").innerText = data.value;
|
|
});
|
|
});
|
|
|
|
const swiper = new Swiper('.swiper', {
|
|
direction: "horizontal",
|
|
loop: true,
|
|
autoplay: true,
|
|
speed: 400,
|
|
spaceBetween: 100,
|
|
});
|