-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathes6.html
80 lines (72 loc) · 3.5 KB
/
es6.html
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
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Elegantní Simple Carousel s Bootstrapem</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="../dist/css/simple-carousel.css">
<link rel="stylesheet" href="demo.css">
</head>
<body>
<div class="container">
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
console.log('gtag volána s argumenty:', arguments);
}
</script>
<section>
<h2 class="text-center my-4">Aktuální Novinky</h2>
<div class="news-container simpleCarousel">
<div class="simpleCarouselItem">
<div class="news-date">15. prosince 2024</div>
<div class="news-title">Tipy pro zdravý životní styl</div>
<div class="news-description">
Rok 2024 přináší nové trendy v oblasti zdravého životního stylu. Zjistěte, jak žít zdravě a šťastně.
<a href="https://www.google.com/search?q=healthy+lifestyle+tips" class="btn btn-link p-0" target="_blank" rel="noopener">Zjistit více</a>
</div>
<div class="news-image">
<div class="simpleCarouselItemVideo" data-video-src="https://www.w3schools.com/html/mov_bbb.mp4" data-poster="https://placehold.co/600x300"></div>
</div>
</div>
<div class="simpleCarouselItem">
<div class="news-date">10. prosince 2024</div>
<div class="news-title">Nejlepší místa pro dovolenou</div>
<div class="news-description">
Objevte nejlepší prázdninové destinace pro rok 2024 a zjistěte, kde můžete zažít nezapomenutelné chvíle.
<a href="https://www.google.com/search?q=best+holiday+destinations" class="btn btn-link p-0" target="_blank" rel="noopener">Číst dále</a>
</div>
<div class="news-image">
<img class="simpleCarouselItemImage" data-src="https://placehold.co/600x400/EEE/31343C" alt="">
</div>
</div>
<div class="simpleCarouselItem">
<div class="news-date">25. prosince 2024</div>
<div class="news-title">Ekonomické trendy roku 2024</div>
<div class="news-description">
Aktuální ekonomické trendy a predikce pro rok 2024. Co můžete očekávat na finančních trzích?
<a href="https://www.google.com/search?q=stock+market+trends" class="btn btn-link p-0" target="_blank" rel="noopener">Více zde</a>
</div>
<div class="news-image">
<img class="simpleCarouselItemImage" data-src="https://placehold.co/600x400/EEE/31343C" alt="">
</div>
</div>
</div>
</section>
</div>
<script type="module">
import SimpleCarousel from '../dist/js/simple.carousel.es6.js';
document.addEventListener("DOMContentLoaded", function() {
const carouselElement = document.querySelector('.simpleCarousel');
new SimpleCarousel(carouselElement, {
interval: 4000,
generateIndicators: true,
enableLogging: false,
enableAnalytics: true
});
});
</script>
</body>
</html>