Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (function ($) {
- "use strict";
- new WOW().init();
- $(document).ready(function () {
- $("#stickymenu").sticky({
- topSpacing: 0
- });
- // one page nav
- $('#nav').onePageNav({
- currentClass: 'active',
- changeHash: true,
- scrollSpeed: 4000,
- scrollThreshold: 0.5,
- filter: '',
- easing: 'swing',
- begin: function() {
- //I get fired when the animation is starting
- },
- end: function() {
- //I get fired when the animation is ending
- },
- scrollChange: function(jQuerycurrentListItem) {
- //I get fired when you enter a section and I pass the list item of the section
- }
- });
- // Active meanmenu
- jQuery('header nav').meanmenu({
- meanRevealPosition: "center"
- });
- // Active slider
- $(window).load(function() {
- $('.flexslider').flexslider({
- animation: "fade",
- smoothHeight: true,
- controlNav: false,
- prevText: "",
- nextText: "",
- });
- });
- // Active Testimonial carousel
- $("#testimonail_carousel").owlCarousel({
- items : 3,
- itemsDesktop : [1199,3],
- itemsDesktopSmall : [980,2],
- itemsTablet: [768,1],
- itemsMobile : [479,1],
- pagination : false,
- navigation : true,
- navigationText : ["",""],
- });
- // Active Testimonial carousel
- $("#portfolios_carousel").owlCarousel({
- items : 3,
- itemsDesktop : [1199,3],
- itemsDesktopSmall : [980,2],
- itemsTablet: [768,1],
- itemsMobile : [479,1],
- pagination : false,
- navigation : true,
- navigationText : ["",""],
- });
- });
- })(jQuery);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement