2017-10-03 18:34:59 +02:00
|
|
|
<!doctype html>
|
2017-10-22 14:02:24 +02:00
|
|
|
<html lang="en">
|
2016-11-12 16:12:58 +01:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2018-12-16 15:39:48 +01:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
2016-11-12 16:12:58 +01:00
|
|
|
<link rel="stylesheet" href="../../../dist/css/bootstrap.min.css">
|
|
|
|
<title>Carousel</title>
|
2018-02-19 10:10:25 +01:00
|
|
|
<style>
|
|
|
|
.carousel-item {
|
|
|
|
transition: transform 2s ease, opacity .5s ease;
|
|
|
|
}
|
|
|
|
</style>
|
2016-11-12 16:12:58 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
|
|
<h1>Carousel <small>Bootstrap Visual Test</small></h1>
|
2014-06-08 04:11:44 +02:00
|
|
|
|
2018-02-19 10:10:25 +01:00
|
|
|
<p>The transition duration should be around 2s. Also, the carousel shouldn't slide when its window/tab is hidden. Check the console log.</p>
|
2014-06-08 04:11:44 +02:00
|
|
|
|
2016-11-12 16:12:58 +01:00
|
|
|
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
|
|
|
|
<ol class="carousel-indicators">
|
|
|
|
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
|
|
|
|
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
|
|
|
|
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
|
|
|
|
</ol>
|
2017-04-11 12:12:30 +02:00
|
|
|
<div class="carousel-inner">
|
2016-11-12 16:12:58 +01:00
|
|
|
<div class="carousel-item active">
|
2017-09-26 14:24:14 +02:00
|
|
|
<img src="https://i.imgur.com/iEZgY7Y.jpg" alt="First slide">
|
2016-11-12 16:12:58 +01:00
|
|
|
</div>
|
|
|
|
<div class="carousel-item">
|
2017-09-26 14:24:14 +02:00
|
|
|
<img src="https://i.imgur.com/eNWn1Xs.jpg" alt="Second slide">
|
2016-11-12 16:12:58 +01:00
|
|
|
</div>
|
|
|
|
<div class="carousel-item">
|
2017-09-26 14:24:14 +02:00
|
|
|
<img src="https://i.imgur.com/Nm7xoti.jpg" alt="Third slide">
|
2016-11-12 16:12:58 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-12-30 11:29:47 +01:00
|
|
|
<a class="carousel-control-prev" href="#carousel-example-generic" role="button" data-slide="prev">
|
|
|
|
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
2016-11-12 16:12:58 +01:00
|
|
|
<span class="sr-only">Previous</span>
|
|
|
|
</a>
|
2016-12-30 11:29:47 +01:00
|
|
|
<a class="carousel-control-next" href="#carousel-example-generic" role="button" data-slide="next">
|
|
|
|
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
2016-11-12 16:12:58 +01:00
|
|
|
<span class="sr-only">Next</span>
|
|
|
|
</a>
|
2014-06-08 04:11:44 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2018-07-25 11:29:16 +02:00
|
|
|
<script src="../../dist/util.js"></script>
|
2018-06-17 23:09:04 +02:00
|
|
|
<script src="../../dist/dom/polyfill.js"></script>
|
|
|
|
<script src="../../dist/dom/manipulator.js"></script>
|
2017-08-21 09:11:37 +02:00
|
|
|
<script src="../../dist/dom/eventHandler.js"></script>
|
2017-08-24 22:22:02 +02:00
|
|
|
<script src="../../dist/dom/selectorEngine.js"></script>
|
|
|
|
<script src="../../dist/dom/data.js"></script>
|
2016-11-12 16:12:58 +01:00
|
|
|
<script src="../../dist/util.js"></script>
|
|
|
|
<script src="../../dist/carousel.js"></script>
|
|
|
|
<script>
|
2019-02-24 14:42:18 +01:00
|
|
|
var t0
|
|
|
|
var t1
|
|
|
|
var carousel = document.getElementById('carousel-example-generic')
|
2018-02-19 10:10:25 +01:00
|
|
|
|
2019-02-24 14:42:18 +01:00
|
|
|
// Test to show that the carousel doesn't slide when the current tab isn't visible
|
|
|
|
// Test to show that transition-duration can be changed with css
|
|
|
|
carousel.addEventListener('slid.bs.carousel', function (event) {
|
|
|
|
t1 = performance.now()
|
|
|
|
console.log('transition-duration took ' + (t1 - t0) + 'ms, slid at ', event.timeStamp)
|
|
|
|
})
|
|
|
|
carousel.addEventListener('slide.bs.carousel', function () {
|
|
|
|
t0 = performance.now()
|
2016-11-12 16:12:58 +01:00
|
|
|
})
|
|
|
|
</script>
|
|
|
|
</body>
|
2014-06-08 04:11:44 +02:00
|
|
|
</html>
|