Files
band-management/resources/vuexy-admin-v10.11.1/html-version/Bootstrap5/vuexy-html-admin-template/full-version/assets/js/app-academy-course-details.js

28 lines
675 B
JavaScript

// Academy course detail
'use strict';
document.addEventListener('DOMContentLoaded', function (e) {
// video
const videoPlayer = new Plyr('#plyr-video-player');
document.getElementsByClassName('plyr')[0].style.borderRadius = '6px';
// content sticky
const htmlElement = document.getElementsByTagName('html')[0];
const stick = document.querySelector('.stick-top');
function TopSticky() {
if (htmlElement.classList.contains('layout-navbar-fixed')) {
stick.classList.add('course-content-fixed');
} else {
stick.classList.remove('course-content-fixed');
}
}
TopSticky();
window.onscroll = function () {
TopSticky();
};
});