Hallo,
ich versuche mich gerade an einem Javascript. Dieses scheint auf den ersten Blick zu funktionieren. Aber wenn das Script aktiv ist, dann funktioniert z.B. das Accordion nicht mehr. Ich verwende Bootstrap 3.3.1 Ich benötige dringend Hilfe beim Debuggen des Scriptes.
Ich möchte die Lösung des Problems als Auftragsarbeit abgeben. Bitte eine PN an mich.
ich versuche mich gerade an einem Javascript. Dieses scheint auf den ersten Blick zu funktionieren. Aber wenn das Script aktiv ist, dann funktioniert z.B. das Accordion nicht mehr. Ich verwende Bootstrap 3.3.1 Ich benötige dringend Hilfe beim Debuggen des Scriptes.
Ich möchte die Lösung des Problems als Auftragsarbeit abgeben. Bitte eine PN an mich.
Code:
jQuery(function($) { // When to show the scroll link // higher number = scroll link appears further down the page var upperLimit = 100; // Our scroll link element var scrollElem = $('a#scroll-to-top'); // Scroll to top speed var scrollSpeed = 100; // Show and hide the scroll to top link based on scroll position scrollElem.hide(); $(window).scroll(function () { var scrollTop = $(document).scrollTop(); if ( scrollTop > upperLimit ){ $(scrollElem).stop().fadeTo(300, 1); // fade back in }else{ $(scrollElem).stop().fadeTo(300, 0); // fade out } }); // Scroll to top animation on click $(scrollElem).click(function(){ $('html, body').animate({scrollTop:100}, scrollSpeed); return false; }); }); /* Anchorlink smooth scroll */ jQuery(function($) { $('a[href*=#]:not([href=#])').click(function() { if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') || location.hostname == this.hostname) { var target = $(this.hash), headerHeight = $(".primary-header").height() + 5; // Get fixed header height target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); if (target.length) { $('html,body').animate({ scrollTop: target.offset().top - 240 }, 500); return false; } } }); });
Kommentar