首页 \ 问答 \ 平滑滚动 -(Smooth Scrolling -)

平滑滚动 -(Smooth Scrolling -)

我实现了以下代码来启用平滑滚动。 问题是它似乎不允许书签链接在不在书签页面上时工作。

例如,在下一页上,右侧栏中的“发布作业”链接/按钮不起作用 - 单击链接将不会执行任何操作 - 甚至不会打开页面。

https://indianashrm.staging.wpengine.com/job-board/graphic-designer/

如果书签链接位于带有书签的页面上,则可以工作 - 请参阅侧栏中的“发布作业链接/按钮”。

https://indianashrm.staging.wpengine.com/job-board/

有任何想法吗?

<script>
jQuery(document).ready(function($){
  // Add smooth scrolling to all links
  $("a").on('click', function(event) {

    // Make sure this.hash has a value before overriding default behavior
    if (this.hash !== "") {
      // Prevent default anchor click behavior
      event.preventDefault();

      // Store hash
      var hash = this.hash;

      // Using jQuery's animate() method to add smooth page scroll
      // The optional number (800) specifies the number of milliseconds it takes to scroll to the specified area
      $('html, body').animate({
        scrollTop: $(hash).offset().top
      }, 800, function(){

        // Add hash (#) to URL when done scrolling (default click behavior)
        window.location.hash = hash;
      });
    } // End if
  });
});
</script>

I implemented the following code to enable smooth scrolling. The problem is it doesn't seem to allow bookmark links to work when they aren't on the page of the bookmark.

For example, on the following page, the "Post a Job" link/button in the right sidebar doesn't work - clicking the link does nothing - doesn't even open the page.

https://indianashrm.staging.wpengine.com/job-board/graphic-designer/

If the bookmark link is on the page with the bookmark, it works - see "Post a Job link/button in sidebar.

https://indianashrm.staging.wpengine.com/job-board/

Any ideas?

<script>
jQuery(document).ready(function($){
  // Add smooth scrolling to all links
  $("a").on('click', function(event) {

    // Make sure this.hash has a value before overriding default behavior
    if (this.hash !== "") {
      // Prevent default anchor click behavior
      event.preventDefault();

      // Store hash
      var hash = this.hash;

      // Using jQuery's animate() method to add smooth page scroll
      // The optional number (800) specifies the number of milliseconds it takes to scroll to the specified area
      $('html, body').animate({
        scrollTop: $(hash).offset().top
      }, 800, function(){

        // Add hash (#) to URL when done scrolling (default click behavior)
        window.location.hash = hash;
      });
    } // End if
  });
});
</script>

原文:https://stackoverflow.com/questions/43613279
更新时间:2023-07-30 20:07

最满意答案

我在测试中遇到了这个问题,gmail会引用重复的内容。

只是不要发送主题行。

虽然不相关:绝对不使用div或浮点数(使用表格),并为gmail内联一切。


I've had that problem in testing, gmail will quote duplicate content.

Just don't send with a subject line.

And although unrelated: definitely don't use divs or floats (use tables), and inline everything for gmail.

相关问答

更多
  • 这在overlay_scroll_bars设置下。 重叠的滚动条在不活动时会消失,因此请使用以下内容更新您的用户首选项: "overlay_scroll_bars": "disabled" This is under the overlay_scroll_bars setting. Overlaid scroll bars disappear when not active, so update your user preferences with the following: "overlay_scro ...
  • 我不能说有最好的方法来做到这一点。 这取决于项目的结构以及您喜欢的样式。 这两种方法主要用于代码。 如果你想通过css文件管理样式 - 写@extend 。 但是,如果您想要一个没有共同风格的元素,您必须为el创建一个修饰符。 例如 - .profile__text--reset 。 如果要声明常用样式,则具有公共类的类列表可能会变得太长。 但它更清晰,更具体。 你有可能通过javascript管理它。 此代码的一个改进是使用带修饰符的帮助程序会更好。 例如,使用.text--sm或.text--m-sm而 ...
  • 使用与ScrollView相同的代码:
  • 使用RelativeLayout可以使一切变得更容易
  • 无论你制作的图像有多小,在某些时候,如果添加足够多的按钮,它们将无法适应屏幕。 滚动可以接受吗? 您可以将第二个发布的布局与其完全相同,并将其嵌入到ScrollView 。 这样你就可以得到你想要的尺寸 - 如果碰巧有太多的按钮,你可以滚动到达额外的按钮。 No matter how small you make the images, at some point, if you add just enough buttons, they will not fit on the screen. Is scr ...
  • 这也可能是您的问题的解决方案: Android背景隐藏子视图文本 。 你能说出你的9补丁有什么问题以及你如何解决它? I have found the problem : my ninepatch png was messed up.
  • 我在测试中遇到了这个问题,gmail会引用重复的内容。 只是不要发送主题行。 虽然不相关:绝对不使用div或浮点数(使用表格),并为gmail内联一切。 I've had that problem in testing, gmail will quote duplicate content. Just don't send with a subject line. And although unrelated: definitely don't use divs or floats (use tables) ...
  • 您隐藏复选框的标签上有负边距。 删除减号边距并在标签上应用更多的填充。 You have minus margin on your label which hides the checkbox. Remove the minus margin and apply more padding to the label.
  • 尝试一下.. $('.dropdown-menu input').click(function(e) { e.stopPropagation(); }); Try it.. $('.dropdown-menu input').click(function(e) { e.stopPropagation(); });
  • 这里是完全相同的层次结构,相同的布局和一切没有问题的例子: import java.awt.GridBagConstraints; import java.awt.GridBagLayout; import java.awt.Insets; import javax.swing.JFrame; import javax.swing.JPanel; import javax.swing.JScrollPane; import javax.swing.JTextPane; import javax.swing ...

相关文章

更多

最新问答

更多
  • 您如何使用git diff文件,并将其应用于同一存储库的副本的本地分支?(How do you take a git diff file, and apply it to a local branch that is a copy of the same repository?)
  • 将长浮点值剪切为2个小数点并复制到字符数组(Cut Long Float Value to 2 decimal points and copy to Character Array)
  • OctoberCMS侧边栏不呈现(OctoberCMS Sidebar not rendering)
  • 页面加载后对象是否有资格进行垃圾回收?(Are objects eligible for garbage collection after the page loads?)
  • codeigniter中的语言不能按预期工作(language in codeigniter doesn' t work as expected)
  • 在计算机拍照在哪里进入
  • 使用cin.get()从c ++中的输入流中丢弃不需要的字符(Using cin.get() to discard unwanted characters from the input stream in c++)
  • No for循环将在for循环中运行。(No for loop will run inside for loop. Testing for primes)
  • 单页应用程序:页面重新加载(Single Page Application: page reload)
  • 在循环中选择具有相似模式的列名称(Selecting Column Name With Similar Pattern in a Loop)
  • System.StackOverflow错误(System.StackOverflow error)
  • KnockoutJS未在嵌套模板上应用beforeRemove和afterAdd(KnockoutJS not applying beforeRemove and afterAdd on nested templates)
  • 散列包括方法和/或嵌套属性(Hash include methods and/or nested attributes)
  • android - 如何避免使用Samsung RFS文件系统延迟/冻结?(android - how to avoid lag/freezes with Samsung RFS filesystem?)
  • TensorFlow:基于索引列表创建新张量(TensorFlow: Create a new tensor based on list of indices)
  • 企业安全培训的各项内容
  • 错误:RPC失败;(error: RPC failed; curl transfer closed with outstanding read data remaining)
  • C#类名中允许哪些字符?(What characters are allowed in C# class name?)
  • NumPy:将int64值存储在np.array中并使用dtype float64并将其转换回整数是否安全?(NumPy: Is it safe to store an int64 value in an np.array with dtype float64 and later convert it back to integer?)
  • 注销后如何隐藏导航portlet?(How to hide navigation portlet after logout?)
  • 将多个行和可变行移动到列(moving multiple and variable rows to columns)
  • 提交表单时忽略基础href,而不使用Javascript(ignore base href when submitting form, without using Javascript)
  • 对setOnInfoWindowClickListener的意图(Intent on setOnInfoWindowClickListener)
  • Angular $资源不会改变方法(Angular $resource doesn't change method)
  • 在Angular 5中不是一个函数(is not a function in Angular 5)
  • 如何配置Composite C1以将.m和桌面作为同一站点提供服务(How to configure Composite C1 to serve .m and desktop as the same site)
  • 不适用:悬停在悬停时:在元素之前[复制](Don't apply :hover when hovering on :before element [duplicate])
  • 常见的python rpc和cli接口(Common python rpc and cli interface)
  • Mysql DB单个字段匹配多个其他字段(Mysql DB single field matching to multiple other fields)
  • 产品页面上的Magento Up出售对齐问题(Magento Up sell alignment issue on the products page)