D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home3
/
encodto1
/
tresboutique.in
/
tresadmin
/
assets
/
js
/
animation
/
tilt
/
Filename :
tilt-custom.js
back
Copy
(function($) { "use strict"; var tilt_custom = { init: function() { const tilt = $('.js-tilt').tilt(); $('.js-destroy').on('click', function () { const element = $(this).closest('.js-parent').find('.js-tilt'); element.tilt.destroy.call(element); }); $('.js-getvalue').on('click', function () { const element = $(this).closest('.js-parent').find('.js-tilt'); const test = element.tilt.getValues.call(element); console.log(test[0]); }); $('.js-reset').on('click', function () { const element = $(this).closest('.js-parent').find('.js-tilt'); element.tilt.reset.call(element); }); } }; tilt_custom.init() })(jQuery);