微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何将焦点添加到没有 href 的锚点?

如何解决如何将焦点添加到没有 href 的锚点?

我有一个大型网站,并且有数百个没有附加 href 属性的锚标记。与其冒险进行搜索/替换并添加 href="#",我更愿意使用 CSS 定位它们。我正在尝试将焦点状态应用于这些状态,但事实证明这很困难。我正在使用以下 :not([href]) 来定位那些非 href 链接,但我似乎无法专注于它。

/* Duru Sans */
@import url("https://fonts.googleapis.com/css2?family=Duru+Sans&display=swap");
/*resets*/
* {
  Box-sizing: border-Box;
  margin: 0;
  padding: 0;
}

html,body {
  font-family: "Duru Sans",sans-serif;
  font-size: 16px;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 60vh;
}

a {
  text-decoration: none;
}
a.custom-bttn-anim:not([href]),a.custom-bttn-anim {
  align-items: center;
  border: 0;
  border-radius: 4px;
  Box-shadow: 0px 12px 30px rgba(0,0.12);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.062rem;
  font-weight: 700;
  justify-content: center;
  min-width: 185px;
  outline: 0;
  padding: 1.25rem 0;
  position: relative;
  text-transform: none;
  transition: all 0.2s ease;
}
a.custom-bttn-anim:not([href]):hover,a.custom-bttn-anim:hover {
  Box-shadow: 0px 8px 12px rgba(0,0.08);
}
a.custom-bttn-anim:not([href]):before,a.custom-bttn-anim:before {
  content: "";
  position: absolute;
  border: solid 0px #005fec;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  opacity: 0;
  transition: all 0.2s ease;
  border-radius: 4px;
  filter: blur(4px);
}
a.custom-bttn-anim:not([href]):focus-visible:before,a.custom-bttn-anim:focus-visible:before {
  content: "";
  position: absolute;
  border: solid 2px #005fec;
  top: -8px;
  bottom: -8px;
  left: -8px;
  right: -8px;
  opacity: 1;
  filter: blur(0px);
}
a.custom-blue-bttn {
  background: #005fec;
  color: white;
}
a.custom-bttn-anim .bttn-txt {
  color: inherit;
  font-weight: inherit;
  display: inline-block;
  transform: translateX(0.625rem);
  transition: transform 0.2s;
}
a.custom-bttn-anim .learn-more-arrow {
  height: 0.75rem;
  opacity: 0;
  transition: opacity 0.2s,transform 0.2s;
}
a.custom-bttn-anim:hover .bttn-txt {
  transform: translate(0px);
  transition: transform 0.2s;
  margin-right: 0.3rem;
}
a.custom-bttn-anim:hover .learn-more-arrow {
  opacity: 1;
  transition: opacity 0.2s,transform 0.2s;
}
<div class="container">
  <a class="custom-bttn-anim custom-blue-bttn light" href="#">
    <span class="bttn-txt">Small business</span>
    <img src="https://nextivaweb.imgix.net/icons/Arrow-Right-Hover-Animation_white.svg" alt="right arrow icon" class="learn-more-arrow">
  </a>

  <a class="custom-bttn-anim custom-blue-bttn light">
    <span class="bttn-txt">Small business</span>
    <img src="https://nextivaweb.imgix.net/icons/Arrow-Right-Hover-Animation_white.svg" alt="right arrow icon" class="learn-more-arrow">
  </a>
</div>

解决方法

没有 href 属性的锚元素默认是不可聚焦的。

您可以使用 tabindex 属性使它们成为焦点,但我不确定这是否比添加 href="#" 对您更好。

示例:

<a tabindex="0">
    <!-- other stuff -->
</a>

您甚至可以使用一些 JavaScript 来动态添加属性:

document.querySelectorAll("a:not(a[href])").forEach(element => {
    element.setAttribute("tabindex","0")
});

如果空锚标记没有导航到 URI,那么这种配置可能会让使用辅助技术的人感到困惑,而带有附加事件处理程序的按钮可能是更合适的选择。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其他元素将获得点击?
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。)
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbcDriver发生异常。为什么?
这是用Java进行XML解析的最佳库。
Java的PriorityQueue的内置迭代器不会以任何特定顺序遍历数据结构。为什么?
如何在Java中聆听按键时移动图像。
Java“Program to an interface”。这是什么意思?