Events Calendar
Spring B classes begin March 8.
The last day to add classes during the Spring B semester is March 9.
The last day to drop classes during the Spring B Semester is March 10.
All 91制片 campuses will be closed March 15-21, for Spring Break.
let testimonialsListBoxObj=0;
let obj_gallery=0;
let clone_gallery=0;
let sw=1;
function slide_animation_section(){
testimonialsListBoxObj = jQuery('.slide-calendary-events').slick({
slidesToShow: 1,
dots: true,
speed: 500,
infinite: true,
/*adaptiveHeight: true*/
});
}
function load_end_testimonials() {
testimonialsListBoxObj = jQuery('.testimonials-list-box').slick({
focusOnSelect: false,
centerMode: true,
centerPadding: '60px',
slidesToShow: 1,
slidesToScroll: 1,
dots: true,
// autoplay: true,
autoplaySpeed: 500,
speed: 500,
responsive: [,
{
breakpoint: 981,
settings: {
centerMode: true,
slidesToShow: 1,
slidesToScroll: 1
}
}
]
});
jQuery('.detail-item-testimonials').append('
');
jQuery('body').on('click', '.btn-prev', function (e) {
e.preventDefault();
jQuery('.slick-prev').trigger('click');
})
jQuery('body').on('click', '.btn-next', function (e) {
e.preventDefault();
jQuery('.slick-next').trigger('click');
})
//resizeHeightSlickSLide();
}
function resizeHeightSlickSLide(width) {
let obj = jQuery('.testimonials-list-box');
obj.find('.detail-item-testimonials').css('height', 'auto');
if (width <= 480) {
return;
}
let maxHeight = 0;
let lengthItem = obj.find('.slick-slide').length;
setTimeout(function () {
obj.find('.slick-slide').each(function (index, element) {
let heightItem = jQuery(element).find(".detail-item-testimonials").innerHeight();
let heightItem2 = jQuery(element).find('.detail-item-testimonials').height();
if (heightItem > maxHeight) {
maxHeight = heightItem;
}
if ((index + 1) === lengthItem) {
}
})
}, 1000);
}
function load_slide_gallery() {
obj_gallery = jQuery('.section-slide-gallery .list-gallery-student').slick({
focusOnSelect: false,
centerMode: true,
centerPadding: '60px',
slidesToShow: 1,
slidesToScroll: 1,
dots: true,
autoplaySpeed: 500,
speed: 500,
responsive: [,
{
breakpoint: 981,
settings: {
centerMode: true,
slidesToShow: 1,
slidesToScroll: 1
}
}
]
});
jQuery('.section-slide-gallery .detail-item-gallery').append('
');
jQuery('body').on('click', '.btn-prev', function (e) {
e.preventDefault();
jQuery('.slick-prev').trigger('click');
})
jQuery('body').on('click', '.btn-next', function (e) {
e.preventDefault();
jQuery('.slick-next').trigger('click');
})
}
function check_activeSlide_desktop_or_mobile(){
widthWindow = jQuery(window).width();
if(widthWindow<=992){
jQuery('.section-slide-gallery').addClass('show-section-gallery');
jQuery('.section-gallery-desktop').removeClass('show-section-gallery');
} else{
jQuery('.section-slide-gallery').removeClass('show-section-gallery');
jQuery('.section-gallery-desktop').addClass('show-section-gallery');
}
}
function generate_copy_desktop_gallery(){
clone_gallery = jQuery('.wrapper-gallery-workflow').clone(true);
var copy_slide = "
";
jQuery('.section-slide-gallery').after(copy_slide);
jQuery('.section-gallery-desktop').append(clone_gallery);
}
jQuery(document).ready(function () {
generate_copy_desktop_gallery();
jQuery('.am-row>p, .am-row + p, .item-slide + p, .item-inf-news + p, .detail-item-gallery + p, .list-gallery-student + p, .section-slide-gallery + p, .wrapper-gallery-workflow + p').remove();
load_slide_gallery();
slide_animation_section();
load_end_testimonials();
check_activeSlide_desktop_or_mobile();
jQuery(window).resize(function () {
widthWindow = jQuery(window).width();
resizeHeightSlickSLide(widthWindow);
check_activeSlide_desktop_or_mobile();
});
});