mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
68 lines
1.4 KiB
Vue
68 lines
1.4 KiB
Vue
|
<script lang="ts" setup>
|
||
|
import { computed, ref, watch } from 'vue'
|
||
|
import { useRoute } from 'vitepress'
|
||
|
import { useLang } from '../composables/lang'
|
||
|
import skipLinkLocale from '../../i18n/component/skip-link.json'
|
||
|
|
||
|
const route = useRoute()
|
||
|
const lang = useLang()
|
||
|
|
||
|
const anchorRef = ref()
|
||
|
const title = computed(() => skipLinkLocale[lang.value].title)
|
||
|
|
||
|
watch(
|
||
|
() => route.path,
|
||
|
() => anchorRef.value.focus()
|
||
|
)
|
||
|
|
||
|
const focusOnTargetAnchor = ({ target }: Event) => {
|
||
|
const el = document.querySelector(
|
||
|
(target as HTMLAnchorElement).hash!
|
||
|
) as HTMLAnchorElement
|
||
|
|
||
|
if (el) {
|
||
|
const removeTabIndex = () => {
|
||
|
el.removeAttribute('tabindex')
|
||
|
el.removeEventListener('blur', removeTabIndex)
|
||
|
}
|
||
|
el.setAttribute('tabindex', '-1')
|
||
|
el.addEventListener('blur', removeTabIndex)
|
||
|
el.focus()
|
||
|
window.scrollTo(0, 0)
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<span ref="anchorRef" tabindex="-1" />
|
||
|
<a
|
||
|
href="#page-content"
|
||
|
class="skip-link visually-hidden"
|
||
|
@click="focusOnTargetAnchor"
|
||
|
>
|
||
|
{{ title }}
|
||
|
</a>
|
||
|
</template>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
.skip-link {
|
||
|
top: 12px;
|
||
|
left: 12px;
|
||
|
padding: 6px 12px;
|
||
|
z-index: 999;
|
||
|
font-size: var(--el-font-size-base);
|
||
|
font-weight: bold;
|
||
|
text-decoration: none;
|
||
|
color: var(--text-color);
|
||
|
background-color: var(--bg-color);
|
||
|
border-radius: var(--el-border-radius-base);
|
||
|
|
||
|
&:focus {
|
||
|
height: auto;
|
||
|
width: auto;
|
||
|
clip: auto;
|
||
|
clip-path: none;
|
||
|
}
|
||
|
}
|
||
|
</style>
|