📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
esnafbul.demodesign.com.tr
/
panel
/
src
/
js
📝
tiny-slider.js
← Geri Dön
import { tns } from "tiny-slider/src/tiny-slider"; (function () { "use strict"; // Tiny Slider if ($(".tiny-slider").length) { $(".tiny-slider").each(function () { this.tns = tns({ container: this, slideBy: "page", mouseDrag: true, autoplay: true, controls: false, nav: false, speed: 500, }); }); } if ($(".tiny-slider-navigator").length) { $(".tiny-slider-navigator").each(function () { $(this).on("click", function () { if ($(this).data("target") == "prev") { $("#" + $(this).data("carousel"))[0].tns.goTo("prev"); } else { $("#" + $(this).data("carousel"))[0].tns.goTo("next"); } }); }); } // Slider widget page if ($(".single-item").length) { $(".single-item").each(function () { tns({ container: this, slideBy: "page", mouseDrag: true, autoplay: false, controls: true, nav: false, speed: 500, }); }); } if ($(".multiple-items").length) { $(".multiple-items").each(function () { tns({ container: this, slideBy: "page", mouseDrag: true, autoplay: false, controls: true, items: 1, nav: false, speed: 500, responsive: { 600: { items: 3, }, 480: { items: 2, }, }, }); }); } if ($(".responsive-mode").length) { $(".responsive-mode").each(function () { tns({ container: this, slideBy: "page", mouseDrag: true, autoplay: false, controls: true, items: 1, nav: true, speed: 500, responsive: { 600: { items: 3, }, 480: { items: 2, }, }, }); }); } if ($(".center-mode").length) { $(".center-mode").each(function () { tns({ container: this, mouseDrag: true, autoplay: false, controls: true, center: true, items: 1, nav: false, speed: 500, responsive: { 600: { items: 2, }, }, }); }); } if ($(".fade-mode").length) { $(".fade-mode").each(function () { tns({ mode: "gallery", container: this, slideBy: "page", mouseDrag: true, autoplay: true, controls: true, nav: true, speed: 500, }); }); } })();
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula