我只是有以下脚本,如果您查看$('html,body').animate({
第 9 行,您会看到- 问题是,当屏幕宽度低于 1030px 时scrollTop: target.offset().top - 95 }, 700);
,我将如何更改数字95 (在 offset().top XX 之后)?
我试图添加这行代码并尝试解决它,但它不起作用 - 我不知道我做错了什么。if (width <= 1030) {
这是脚本:
//Menu Scrolling To Sections//
$(document).ready(function () {
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
|| location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top - 95 }, 700);
return false;
}}});});