sans smooth scroll pour le premier retour des ancres sans va-et-vient
This commit is contained in:
parent
ade00e73f3
commit
fd98f66477
@ -55,26 +55,26 @@ $(function() {
|
||||
});
|
||||
|
||||
// smooth scroll
|
||||
$('a[href^="#"], .js-scrollTo').on('click', function(e) {
|
||||
if($(this).hasClass('js-noscroll')) {
|
||||
return;
|
||||
}
|
||||
var hash = this.hash;
|
||||
var $target = $(hash);
|
||||
var offset = $target.offset();
|
||||
if(!offset) {
|
||||
$target = $('a[name='+hash.replace(/#/,'')+']');
|
||||
offset = $target.offset();
|
||||
}
|
||||
if(offset) {
|
||||
e.preventDefault();
|
||||
var newPos = offset.top - 10;
|
||||
$('html, body').stop().animate(
|
||||
{'scrollTop': newPos}, 750, 'swing', function() {
|
||||
window.location.hash = hash;
|
||||
});
|
||||
}
|
||||
});
|
||||
// $('a[href^="#"], .js-scrollTo').on('click', function(e) {
|
||||
// if($(this).hasClass('js-noscroll')) {
|
||||
// return;
|
||||
// }
|
||||
// var hash = this.hash;
|
||||
// var $target = $(hash);
|
||||
// var offset = $target.offset();
|
||||
// if(!offset) {
|
||||
// $target = $('a[name='+hash.replace(/#/,'')+']');
|
||||
// offset = $target.offset();
|
||||
// }
|
||||
// if(offset) {
|
||||
// e.preventDefault();
|
||||
// var newPos = offset.top - 10;
|
||||
// $('html, body').stop().animate(
|
||||
// {'scrollTop': newPos}, 750, 'swing', function() {
|
||||
// window.location.hash = hash;
|
||||
// });
|
||||
// }
|
||||
// });
|
||||
|
||||
// champ de recherche dans le menu
|
||||
$('.loupe > a').on('click', function(){
|
||||
|
Loading…
Reference in New Issue
Block a user