82 lines
1.8 KiB
Vue
82 lines
1.8 KiB
Vue
<template>
|
|
<ConfigProvider>
|
|
<n-modal
|
|
class="show-card"
|
|
:show="isShow"
|
|
preset="card"
|
|
:title="`图标数量${iconList.length}`"
|
|
style="width: 50%; max-width: 800px"
|
|
@mask-click="close"
|
|
@close="close"
|
|
@update:show="isShow = false"
|
|
>
|
|
<ul class="icon-list">
|
|
<li v-for="icon in iconList" :key="icon" class="dib" @click="handleClick(icon)">
|
|
<span :class="`icon iconfont ${icon}`"></span>
|
|
</li>
|
|
</ul>
|
|
</n-modal>
|
|
</ConfigProvider>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { NModal } from 'naive-ui'
|
|
import { computed, ref } from 'vue'
|
|
|
|
import iconfontList from '@/assets/directionFonts/iconfont.json'
|
|
import ConfigProvider from '@/components/provider/ConfigProvider.vue'
|
|
import { message } from '@/utils/message'
|
|
import { copyText } from '@/utils/utils'
|
|
|
|
const iconList = computed<string[]>(() => {
|
|
return iconfontList.glyphs.map((item) => `icon-${item.font_class}`)
|
|
})
|
|
|
|
const isShow = ref<boolean>(true)
|
|
const close = () => {
|
|
isShow.value = false
|
|
}
|
|
const handleClick = (icon: string) => {
|
|
copyText(icon)
|
|
message.success(`复制图标: ${icon}`)
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
:deep(.show-card) {
|
|
width: 50%;
|
|
}
|
|
.icon-list {
|
|
width: 100% !important;
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.icon-list li {
|
|
width: 50px;
|
|
text-align: center;
|
|
list-style: none !important;
|
|
cursor: default;
|
|
transition: all 0.3s;
|
|
|
|
&:hover {
|
|
transform: scale(1.5);
|
|
}
|
|
|
|
&:active {
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
.icon {
|
|
display: block;
|
|
height: 50px;
|
|
line-height: 50px;
|
|
font-size: 22px;
|
|
margin: 10px auto;
|
|
-webkit-transition: font-size 0.25s linear, width 0.25s linear;
|
|
-moz-transition: font-size 0.25s linear, width 0.25s linear;
|
|
transition: font-size 0.25s linear, width 0.25s linear;
|
|
}
|
|
</style>
|