From c203fcb7df9ef3853d7842a9083609b4725032ca Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Wed, 15 Aug 2018 23:22:57 +0530 Subject: added custom css class for other than home page tempates --- static/website/bootstrap-css/assets/css/main.css | 6 ++++++ static/website/bootstrap-css/assets/js/main.js | 11 +++++++++-- 2 files changed, 15 insertions(+), 2 deletions(-) (limited to 'static/website') diff --git a/static/website/bootstrap-css/assets/css/main.css b/static/website/bootstrap-css/assets/css/main.css index 819e3a5..d74c2ea 100644 --- a/static/website/bootstrap-css/assets/css/main.css +++ b/static/website/bootstrap-css/assets/css/main.css @@ -299,6 +299,12 @@ ul li { -webkit-transition: all 0.2s linear 0s; transition: all 0.2s linear 0s; } +.navbar-solid-other { + background-color: #000 !important; + padding: 0 !important; + -webkit-transition: all 0.2s linear 0s; + transition: all 0.2s linear 0s; +} .site-branding { float: left; diff --git a/static/website/bootstrap-css/assets/js/main.js b/static/website/bootstrap-css/assets/js/main.js index 66a2645..bb476df 100644 --- a/static/website/bootstrap-css/assets/js/main.js +++ b/static/website/bootstrap-css/assets/js/main.js @@ -12,13 +12,20 @@ $(window).load(function(){ function handleTopNavAnimation() { var top=$(window).scrollTop(); - + if($('#home').attr("data") == 'home'){ if(top>10){ + $('#site-nav').addClass('navbar-solid'); } else{ $('#site-nav').removeClass('navbar-solid'); } + } + else{ + $('#site-nav').addClass('navbar-solid-other'); + $("a").removeAttr("data-scroll"); + } + } /* @@ -66,4 +73,4 @@ $('#registration-form').submit(function(e){ * SmoothScroll */ -smoothScroll.init(); \ No newline at end of file +smoothScroll.init(); -- cgit