左侧菜单插件自动化 以及点击滚动到对应位置

This commit is contained in:
hawk86104 2023-11-02 09:10:30 +08:00
parent bfed675f3e
commit f35611bb1c
5 changed files with 46 additions and 23 deletions

View File

@ -4,7 +4,7 @@
* @Autor: 地虎降天龙 * @Autor: 地虎降天龙
* @Date: 2023-10-16 10:53:09 * @Date: 2023-10-16 10:53:09
* @LastEditors: 地虎降天龙 * @LastEditors: 地虎降天龙
* @LastEditTime: 2023-10-26 09:13:11 * @LastEditTime: 2023-11-02 08:43:08
*/ */
// import { resolve } from 'path'; // import { resolve } from 'path';
import { join } from 'path'; import { join } from 'path';
@ -23,6 +23,9 @@ export default defineBuildConfig({
title: 'Ice.gl', title: 'Ice.gl',
navigation: 'top', navigation: 'top',
multiTabs: false, multiTabs: false,
isFixedHeader: true,
// isFixedSidebar: true,
// sideWidth: 800,
logo: 'logo.png', logo: 'logo.png',
menus: [ menus: [
{ {

View File

@ -4,7 +4,7 @@
* @Autor: 地虎降天龙 * @Autor: 地虎降天龙
* @Date: 2023-10-16 10:53:09 * @Date: 2023-10-16 10:53:09
* @LastEditors: 地虎降天龙 * @LastEditors: 地虎降天龙
* @LastEditTime: 2023-10-31 11:38:06 * @LastEditTime: 2023-11-02 08:05:54
--> -->
# 🧊🧊🧊 icegl-three-vue-tres 🧊🧊🧊 # 🧊🧊🧊 icegl-three-vue-tres 🧊🧊🧊
## 🎉🎉🎊 三维可视化项目快速落地の开源框架 🎊🎉🎉 ## 🎉🎉🎊 三维可视化项目快速落地の开源框架 🎊🎉🎉
@ -31,7 +31,7 @@ ThreeJS大名鼎鼎的基于浏览器渲染JavaScript语言的3D库。
集成封装项目落地的常用库图标、多语言、API接口调用、Vuex/Pinia、model数据封装、页面layout/权限access、路由管理等。 集成封装项目落地的常用库图标、多语言、API接口调用、Vuex/Pinia、model数据封装、页面layout/权限access、路由管理等。
- 🌠 像写Vue3.x一样写三维可视化项目 * TresJS [点击详情](https://tresjs.org/guide) - 🌠 像写Vue3.x一样写三维可视化项目并且全功能版本追溯保持threeJS最新版本 * TresJS [点击详情](https://tresjs.org/guide)
```html ```html
<template> <template>

View File

@ -4,7 +4,7 @@
* @Autor: 地虎降天龙 * @Autor: 地虎降天龙
* @Date: 2023-10-16 10:53:09 * @Date: 2023-10-16 10:53:09
* @LastEditors: 地虎降天龙 * @LastEditors: 地虎降天龙
* @LastEditTime: 2023-11-01 12:55:50 * @LastEditTime: 2023-11-02 09:08:58
--> -->
<template> <template>
<div class="flex h-full"> <div class="flex h-full">
@ -27,21 +27,16 @@
<PictureOutlined /> <PictureOutlined />
</template> </template>
<template #label>插件中心</template> <template #label>插件中心</template>
<f-menu-item value="2.1"> <f-menu-item v-for="(onePlugin, pkey) in pluginsConfig" :value="pkey">
<template #label>{{ pluginsConfig.digitalCity.title }}</template> <template #label>{{ onePlugin.title }}</template>
</f-menu-item>
<f-menu-item value="2.2">
<template #label>{{ pluginsConfig.earthSample.title }}</template>
</f-menu-item>
<f-menu-item value="2.3">
<template #label>{{ pluginsConfig.vantaJS.title }}</template>
</f-menu-item> </f-menu-item>
</f-sub-menu> </f-sub-menu>
</f-menu> </f-menu>
</div> </div>
<div class="w-full"> <div class="flex-1 overflow-scroll" style="height: calc(100vh - 54px);">
<div style="background-color: #f1f1f2;" v-for="(onePlugin, pkey) in pluginsConfig" :key="pkey"> <div style="background-color: #f1f1f2;" v-for="(onePlugin, pkey) in pluginsConfig" :key="pkey"
<FDivider titlePlacement="left">{{ onePlugin.title }}</FDivider> :ref="el => tabListRef[pkey] = el">
<FDivider titlePlacement="left">{{ onePlugin.title + pkey }}</FDivider>
<FText class="ml-13" tag="i" size="small">{{ onePlugin.intro }}</FText> <FText class="ml-13" tag="i" size="small">{{ onePlugin.intro }}</FText>
<div class="flex flex-wrap flex-justify-start content-start mt-6 pl-6"> <div class="flex flex-wrap flex-justify-start content-start mt-6 pl-6">
<div class="w-80 mr-10 mb-10 overflow-hidden" v-for="(onePreview, okey) in onePlugin.preview" <div class="w-80 mr-10 mb-10 overflow-hidden" v-for="(onePreview, okey) in onePlugin.preview"
@ -61,7 +56,8 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { defineRouteMeta, useRouter } from '@fesjs/fes'; // fesJS import { ref } from 'vue';
import { defineRouteMeta, useRouter } from '@fesjs/fes'; //fesJS
import { AppstoreOutlined, PictureOutlined } from '@fesjs/fes-design/icon'; import { AppstoreOutlined, PictureOutlined } from '@fesjs/fes-design/icon';
import { FCard, FDivider, FText } from '@fesjs/fes-design'; import { FCard, FDivider, FText } from '@fesjs/fes-design';
import { getPluginsConfig } from '../common/utils'; import { getPluginsConfig } from '../common/utils';
@ -71,15 +67,13 @@ defineRouteMeta({
title: '开源框架展示', title: '开源框架展示',
}); });
const router = useRouter() // fesJS const tabListRef = ref([])
let pluginsConfig = getPluginsConfig(); let pluginsConfig = getPluginsConfig();
const goto = (value: string) => { const goto = (value: string) => {
console.log(value) tabListRef.value[value.value]?.scrollIntoView({ behavior: 'smooth', block: 'center', inline: "nearest" })
} }
const router = useRouter() //fesJS
let publicPath = process.env.BASE_URL let publicPath = process.env.BASE_URL
const toPage = (plugin: string, value: any) => { const toPage = (plugin: string, value: any) => {
let routeUrl = router.resolve({ let routeUrl = router.resolve({
path: `/${plugin}/${value}` path: `/${plugin}/${value}`
@ -88,8 +82,12 @@ const toPage = (plugin: string, value: any) => {
} }
</script> </script>
<style> <style lang="less">
.layout-logo { .layout-logo {
margin-right: 6.2em !important; /* margin-right: 6.2em !important; */
width: 12.5rem !important;
padding: 0 !important;
justify-content: center;
margin: 0 !important;
} }
</style> </style>

View File

@ -0,0 +1,11 @@
<!--
* @Description:
* @Version: 1.668
* @Autor: 地虎降天龙
* @Date: 2023-11-02 08:03:41
* @LastEditors: 地虎降天龙
* @LastEditTime: 2023-11-02 08:07:20
-->
## 依赖npm包:
yarn add gsap

View File

@ -0,0 +1,11 @@
<!--
* @Description:
* @Version: 1.668
* @Autor: 地虎降天龙
* @Date: 2023-11-02 08:03:41
* @LastEditors: 地虎降天龙
* @LastEditTime: 2023-11-02 08:08:43
-->
## 依赖npm包:
yarn add vanta