MSV FM

dot.antimicrobial@66.96.161.157: ~ $
Path : /hermes/bosweb/b1705/reserva.events/menu/src/js/modules/
File Upload :
Current < : /hermes/bosweb/b1705/reserva.events/menu/src/js/modules/animations.js

import 'jquery.appear'

const Animations = {
  $el: $('.animated'),
  init() {
    const _ = this

    if (_.$el.length) {
      _.$el.appear(function() {
        const $target = $(this)
        const delay = $(this).data('animation-delay')
        setTimeout(function() {
          $target.addClass(`animate__animated animate__${$target.data('animation')}`).addClass('visible')
        }, delay)
      })
    }
  }
}

export default Animations