12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- var isTouch = window.DocumentTouch && document instanceof DocumentTouch;
- function scrollHeader() {
- // Has scrolled class on header
- var zvalue = $(document).scrollTop();
- if ( zvalue > 75 )
- $("#header").addClass("scrolled");
- else
- $("#header").removeClass("scrolled");
- }
- jQuery(document).ready(function($){
- // paralax
- // $('.parallax-window').parallax({imageSrc: '{/pages/02._programmes/10361_web_01.jpg}'});
- // ON SCROLL EVENTS
- if (!isTouch){
- $(document).scroll(function() {
- scrollHeader();
- });
- };
- // TOUCH SCROLL
- $(document).on({
- 'touchmove': function(e) {
- scrollHeader(); // Replace this with your code.
- }
- });
- //Smooth scroll to top
- $('#toTop').click(function(){
- $("html, body").animate({ scrollTop: 0 }, 500);
- return false;
- });
- // Responsive Menu
- $(".bouton").click(function(){
- $("#modal .message").html();
- $("#modal").addClass("open");
- // $("#body").addClass("grey");
- });
- $("#modal .mask, #modal a.close").click(function(){
- $("#modal").removeClass("open");
- return false;
- });
- });
|