You've already forked ProfessionalWebsite
Update links in navbar to fix incorrect href tags (nesting of html files) Renamed 'blog' folder to 'posts' to prevent blog.html loading errors (without html extension) Signed-off-by: Alexander Davis <alex@adcm.uk>
12 lines
523 B
JavaScript
12 lines
523 B
JavaScript
//Optional: Pause/play on hover. Remove this block if not needed
|
|
const carousel = document.getElementById('carouselExampleCaptions')
|
|
|
|
carousel.addEventListener('mouseover', function () {
|
|
const carouselInstance = bootstrap.Carousel.getInstance(carousel)
|
|
carouselInstance.pause()
|
|
})
|
|
|
|
carousel.addEventListener('mouseout', function () {
|
|
const carouselInstance = bootstrap.Carousel.getInstance(carousel)
|
|
carouselInstance.cycle()
|
|
}) |