diff --git a/src/config.json b/src/config.json index ae246b8..a2ca607 100644 --- a/src/config.json +++ b/src/config.json @@ -38,9 +38,9 @@ } ], "res": { - "pdf": "", - "arxiv": "", + "pdf": "https://arxiv.org/pdf/2403.14781", + "arxiv": "https://arxiv.org/abs/2403.14781", "github": "https://github.com/fudan-generative-vision/champ", "huggingface": "" } -} \ No newline at end of file +} diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue index b76384f..ba7e775 100644 --- a/src/views/HomeView.vue +++ b/src/views/HomeView.vue @@ -20,39 +20,6 @@ const bibTex = ref(`@inproceedings{2024champ, year = {2024} }`); -// import { initTWE, Carousel } from 'tw-elements'; -// onMounted(() => { -// initTWE({ Carousel }, { allowReinits: true }); -// }); - -// const animateHumanVideos = ref([]); -// const animateHumanCarousel = ref(); -// watch(animateHumanCarousel, (v) => { -// if (v) { -// v.addEventListener('slide.twe.carousel', (evt: any) => { -// v.addEventListener('slide.twe.carousel', (v: any) => { -// const from = v.from; -// const to = v.to; -// animateHumanVideos.value[from]?.pause(); -// animateHumanVideos.value[to]?.play(); -// }) -// }); -// } -// }); - -// const comparisionsCarousel = ref(); -// const comparisionVideos = ref([]); -// watch(comparisionsCarousel, (newV) => { -// if (newV) { -// newV.addEventListener('slide.twe.carousel', (v: any) => { -// const from = v.from; -// const to = v.to; -// comparisionVideos.value[from]?.pause(); -// comparisionVideos.value[to]?.play(); -// }) -// } -// }, { once: true }); -