📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
sikayetscripti.demodesign.com.tr
/
js
📝
animated-bg.js
← Geri Dön
/** * Copyright Codrops */ { class MorphingBG { constructor(el) { this.DOM = {}; this.DOM.el = el; this.DOM.paths = Array.from(this.DOM.el.querySelectorAll('path')); this.animate(); } animate() { this.DOM.paths.forEach((path) => { setTimeout(() => { anime({ targets: path, duration: anime.random(3000,5000), easing: [0.5,0,0.5,1], d: path.getAttribute('pathdata:id'), loop: true, direction: 'alternate' }); }, anime.random(0,1000)); }); } }; new MorphingBG(document.querySelector('svg.scene')); };
💾 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