让HTML元素充当停止滚动的锚点

时间:2016-05-17 05:29:26

标签: javascript jquery

如何使用<h4>作为锚来停止页面滚动?

即。当我滚动到<h4>时,你无法向下滚动。

1 个答案:

答案 0 :(得分:0)

您可以添加css类cursor属性:

&#13;
&#13;
h4 {
  cursor: pointer; /*<----this will make all the h4 elements to have hand cursor. */
}
&#13;
<h4>Acting as anchor with pointer cursor.</h4>
&#13;
&#13;
&#13;