site_oueb_2/wp-content/plugins/ocean-extra/assets/js/superfish.js

29 lines
530 B
JavaScript
Raw Normal View History

2022-11-22 20:23:31 +01:00
var $j = jQuery.noConflict();
$j( document ).ready( function() {
"use strict";
// Superfish menus
oceanwpSuperFish();
} );
/* ==============================================
SUPERFISH MENUS
============================================== */
function oceanwpSuperFish() {
"use strict"
$j( 'ul.sf-menu' ).superfish( {
delay: 600,
animation: {
opacity: 'show'
},
animationOut: {
opacity: 'hide'
},
speed: 'fast',
speedOut: 'fast',
cssArrows: false,
disableHI: false,
} );
}