mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
57 lines
2.1 KiB
JavaScript
57 lines
2.1 KiB
JavaScript
![]() |
/*===========================
|
||
|
Add .swiper plugin from Dom libraries
|
||
|
===========================*/
|
||
|
function addLibraryPlugin(lib) {
|
||
|
lib.fn.swiper = function (params) {
|
||
|
var firstInstance;
|
||
|
lib(this).each(function () {
|
||
|
var s = new Swiper(this, params);
|
||
|
if (!firstInstance) firstInstance = s;
|
||
|
});
|
||
|
return firstInstance;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
if (domLib) {
|
||
|
if (!('transitionEnd' in domLib.fn)) {
|
||
|
domLib.fn.transitionEnd = function (callback) {
|
||
|
var events = ['webkitTransitionEnd', 'transitionend', 'oTransitionEnd', 'MSTransitionEnd', 'msTransitionEnd'],
|
||
|
i, j, dom = this;
|
||
|
function fireCallBack(e) {
|
||
|
/*jshint validthis:true */
|
||
|
if (e.target !== this) return;
|
||
|
callback.call(this, e);
|
||
|
for (i = 0; i < events.length; i++) {
|
||
|
dom.off(events[i], fireCallBack);
|
||
|
}
|
||
|
}
|
||
|
if (callback) {
|
||
|
for (i = 0; i < events.length; i++) {
|
||
|
dom.on(events[i], fireCallBack);
|
||
|
}
|
||
|
}
|
||
|
return this;
|
||
|
};
|
||
|
}
|
||
|
if (!('transform' in domLib.fn)) {
|
||
|
domLib.fn.transform = function (transform) {
|
||
|
for (var i = 0; i < this.length; i++) {
|
||
|
var elStyle = this[i].style;
|
||
|
elStyle.webkitTransform = elStyle.MsTransform = elStyle.msTransform = elStyle.MozTransform = elStyle.OTransform = elStyle.transform = transform;
|
||
|
}
|
||
|
return this;
|
||
|
};
|
||
|
}
|
||
|
if (!('transition' in domLib.fn)) {
|
||
|
domLib.fn.transition = function (duration) {
|
||
|
if (typeof duration !== 'string') {
|
||
|
duration = duration + 'ms';
|
||
|
}
|
||
|
for (var i = 0; i < this.length; i++) {
|
||
|
var elStyle = this[i].style;
|
||
|
elStyle.webkitTransitionDuration = elStyle.MsTransitionDuration = elStyle.msTransitionDuration = elStyle.MozTransitionDuration = elStyle.OTransitionDuration = elStyle.transitionDuration = duration;
|
||
|
}
|
||
|
return this;
|
||
|
};
|
||
|
}
|
||
|
}
|