Schmidtchen (Talk | contribs) |
Schmidtchen (Talk | contribs) |
||
Line 89: | Line 89: | ||
<style> | <style> | ||
− | + | @media screen and (min-width: 768px){ | |
− | /* | + | CSS |
+ | } | ||
+ | #custom-nav { | ||
+ | background-color: rgba(0,146,203,1); | ||
+ | border: 0; | ||
+ | box-shadow: none; | ||
+ | z-index: 999; | ||
+ | -webkit-transition: background .5s ease-in-out, opacity .5s ease; | ||
+ | -moz-transition: background .5s ease-in-out, opacity .5s ease; | ||
+ | transition: background .5s ease-in-out, opacity .5s ease; | ||
+ | margin-right: -15px; | ||
+ | } | ||
+ | #custom-nav .dropdown-menu { | ||
+ | border-radius: 0; | ||
+ | border: none; | ||
+ | border-top: 5px solid transparent; | ||
+ | background-color: rgba(0,146,203,1); | ||
+ | -webkit-box-shadow: none; | ||
+ | box-shadow: none; | ||
+ | padding-top: 0; | ||
+ | } | ||
+ | #custom-nav .container { | ||
+ | padding-top: 25px; | ||
+ | padding-bottom: 25px; | ||
+ | -webkit-transition: padding-top .5s ease, padding-bottom .5s ease; | ||
+ | -moz-transition: padding-top .5s ease, padding-bottom .5s ease; | ||
+ | transition: padding-top .5s ease, padding-top .5s ease, padding-bottom .5s ease; | ||
+ | } | ||
+ | #custom-nav.affix { | ||
+ | top: 0; | ||
+ | min-width: 100%; | ||
+ | background-color: rgba(0,146,203,0.7); | ||
+ | /* opacity: 0.9; */ | ||
+ | -webkit-transition: background .5s ease-in-out, opacity .5s ease; | ||
+ | -moz-transition: background .5s ease-in-out, opacity .5s ease; | ||
+ | transition: background .5s ease-in-out, opacity .5s ease; | ||
+ | margin-right: 15px; | ||
+ | } | ||
+ | @media screen and (max-width: 767px){ | ||
+ | #wrapwrap { | ||
+ | padding-top: 50px; | ||
+ | } | ||
+ | .navbar-fixed-top { | ||
+ | z-index: 999; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | /* navbar | ||
.navbar-default { | .navbar-default { | ||
background-color: #0092CB; | background-color: #0092CB; | ||
border-color: #E7E7E7; | border-color: #E7E7E7; | ||
− | } | + | }*/ |
/* Title */ | /* Title */ | ||
.navbar-default .navbar-brand { | .navbar-default .navbar-brand { | ||
Line 164: | Line 211: | ||
</style> | </style> | ||
+ | <script> | ||
+ | $(window).scroll(function() { | ||
+ | if ($(".navbar").offset().top > 50) { | ||
+ | $('#custom-nav').addClass('affix'); | ||
+ | $(".navbar-fixed-top").addClass("top-nav-collapse"); | ||
+ | } else { | ||
+ | $('#custom-nav').removeClass('affix'); | ||
+ | $(".navbar-fixed-top").removeClass("top-nav-collapse"); | ||
+ | } | ||
+ | }); | ||
+ | </script> | ||
+ | |||
</head> | </head> | ||
Line 170: | Line 229: | ||
<header> | <header> | ||
− | <nav class="navbar navbar-default navbar-fixed-top" style="margin:15px;"> | + | <nav class="navbar navbar-default navbar-fixed-top" id="custom-nav" style="margin:15px;"> |
<div class="container-fluid"> | <div class="container-fluid"> | ||
Revision as of 12:19, 16 October 2018