Jscrollpane 和内部锚链接
我正在使用 Jscrollpane,一切都很好,除了当我尝试将它与内部锚点一起使用时。 它应该像官方页面上的示例一样工作。
但在我的例子中,它确实破坏了我的网站。整个内容都往上飘,我自己也想不通。
这是我的页面: http://kunden.kunstrasen.at/ htmltriest/index.php?site=dieanreise&user_lang=de 如果单击内部锚点: http://kunden .kunstrasen.at/htmltriest/index.php?site=dieanreise&user_lang=de#westautobahn
有人知道这里发生了什么吗? 感谢您的帮助。
I am using Jscrollpane and everything works great, except when I try to use it with an internal anchor.
It should work like the example on the official page.
But in my example it really destroys my site. The whole content is floating upwards and I can't figure it out myself.
Here is my page: http://kunden.kunstrasen.at/htmltriest/index.php?site=dieanreise&user_lang=de
and if the inner anchor is clicked: http://kunden.kunstrasen.at/htmltriest/index.php?site=dieanreise&user_lang=de#westautobahn
Anybody a clou whats going on here?
Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
jspane 不适用于旧式锚点
例如
,您必须
额外编写必须
在 jScrollPane 设置对象中启用的内容。
hijackInternalLinks 还捕获来自滚动窗格外部的链接,如果您只需要内部链接,您可以添加此代码,就像 hijackInternalLinks 一样,它绑定 a 元素上的单击功能,并使用目标调用scrollToElement:
但请注意,您始终必须使用标签上的 id 属性。
如果您使用的是tinymce,您可以使用此函数修复代码
}
jspane does not work with old style anchors
e.g.
instead you have to write
additionaly you have to enable
in jScrollPane settings Object.
The hijackInternalLinks also captures links from outside the scrollpane, if you only need internal links you can add this code, like hijackInternalLinks it binds the click funktion on the a elements and calls the scrollToElement with the target:
but note you will always have to use the id attribute on a tags.
If you are using tinymce you can repair the code with this function
}