Здесь ниже я пытаюсь вставить метод уничтожения наклона для jquery, но я не могу это сделать ...
Мне не понятна эта строка кода, которую я получаю на официальном сайте
(const tilt = $('.js-tilt').tilt()
tilt.methods.destroy.call(tilt);)
Вы можете помочь, пожалуйста?
$( function() {
//start titl
const tilt = $('.items').tilt({scale: 1.2});
$( ".items1" ).draggable({ revert: true },{
start: function() {
// i dont know how to destroy or disable titl.js on start
},
drag: function() {
// items.tilt.destroy.call(items);
// i dont know how to destroy or disable titl.js on drag
},
stop: function() {
$(".about").show();
// if destroy method wors probably i need to re-enable it
// restart titl when drag is finished
const tilt = $('.items').tilt({scale: 1.2});
}
});
});