1jQuery(document).on('ready', function ($) {
2 "use strict";
3
4 /*--------------------------
5 STICKY MAINMENU
6 ---------------------------*/
7 $("#mainmenu-area").sticky({
8 topSpacing: 0
9 });
10
11
12 /*---------------------------
13 SMOOTH SCROLL
14 -----------------------------*/
15 $('ul#nav li a[href^="#"], a.navbar-brand, a.scrolltotop').on('click', function (event) {
16 var id = $(this).attr("href");
17 var offset = 60;
18 var target = $(id).offset().top - offset;
19 $('html, body').animate({
20 scrollTop: target
21 }, 1500, "easeInOutExpo");
22 event.preventDefault();
23 });
24
25
26 /*----------------------------
27 MOBILE & DROPDOWN MENU
28 ------------------------------*/
29 jQuery('.stellarnav').stellarNav({
30 theme: 'dark'
31 });
32
33
34 /*----------------------------
35 SCROLL TO TOP
36 ------------------------------*/
37 $(window).scroll(function () {
38 var $totalHeight = $(window).scrollTop();
39 var $scrollToTop = $(".scrolltotop");
40 if ($totalHeight > 300) {
...
</html>