Skip to content

Commit

Permalink
Update HomeView.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
AricGamma committed Mar 24, 2024
1 parent e8b5451 commit 35df2cd
Showing 1 changed file with 1 addition and 34 deletions.
35 changes: 1 addition & 34 deletions src/views/HomeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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<HTMLVideoElement[]>([]);
// const animateHumanCarousel = ref<HTMLElement>();
// 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<HTMLElement>();
// const comparisionVideos = ref<HTMLVideoElement[]>([]);
// 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 });
</script>

<template>
Expand Down Expand Up @@ -80,7 +47,7 @@ const bibTex = ref(`@inproceedings{2024champ,

<a class="button" :href="res.github" target="_blank">
<i class="iconfont icon-lm-github"></i>
<span>Code (comming soon)</span>
<span>Code</span>
</a>

<!-- <a class="button" :href="res.huggingface" target="_blank">
Expand Down

0 comments on commit 35df2cd

Please sign in to comment.