我想知道如何通过向下滚动页面来隐藏Vue3中的标题,并在向上滚动时重新显示它。我尝试了所有我能在网上找到的东西,但对我不起作用。
nbysray51#
您可以在ion-content上使用事件:例如:
ion-content
<template> <ion-content :scroll-events="true" @ionScrollStart="logScrollStart()" @ionScroll="logScrolling($event)" @ionScrollEnd="logScrollEnd()"> <h1>Main Content</h1> <div slot="fixed"> <h1>Fixed Content</h1> </div> </ion-content> </template> <script> import { IonContent } from '@ionic/vue'; import { defineComponent } from 'vue'; export default defineComponent({ components: { IonContent } }); </script>
文件
1条答案
按热度按时间nbysray51#
您可以在
ion-content
上使用事件:例如:
文件