GithubHelp home page GithubHelp logo

Component Props about eno-auto-scroll HOT 3 CLOSED

genophy avatar genophy commented on May 27, 2024
Component Props

from eno-auto-scroll.

Comments (3)

davidww2 avatar davidww2 commented on May 27, 2024

hi
Further to my comment the above
I solved the problem is-mouse-stop:
I used your Component Ref function-
I added events @mouseOver @mouseout

<EnoAutoScroll ref="enoAutoScroll" :duration="20000">
             <div class="li" v-for="news in navNews" :key="news.id" @mouseover="enoAutoScrollPauseScroll" @mouseout="enoAutoScrollKeepScroll">
               {{ news.data }}
               <span class="date">{{ news.date }}</span>
             </div>
           </EnoAutoScroll>

methods: {
  enoAutoScrollPauseScroll() {
     this.$refs.enoAutoScroll.pauseScroll();
   },

   enoAutoScrollKeepScroll() {
     this.$refs.enoAutoScroll.keepScroll();
   }
}

thank you

from eno-auto-scroll.

genophy avatar genophy commented on May 27, 2024

hi
Further to my comment the above
I solved the problem is-mouse-stop:
I used your Component Ref function-
I added events @mouseOver @mouseout

<EnoAutoScroll ref="enoAutoScroll" :duration="20000">
             <div class="li" v-for="news in navNews" :key="news.id" @mouseover="enoAutoScrollPauseScroll" @mouseout="enoAutoScrollKeepScroll">
               {{ news.data }}
               <span class="date">{{ news.date }}</span>
             </div>
           </EnoAutoScroll>

methods: {
  enoAutoScrollPauseScroll() {
     this.$refs.enoAutoScroll.pauseScroll();
   },

   enoAutoScrollKeepScroll() {
     this.$refs.enoAutoScroll.keepScroll();
   }
}

thank you

@reply

this component has add the 'mouseover' and 'mouseout' event listener.

the source:

 that.$refs.enoAutoScroll.addEventListener('mouseover', (e) => {
  e.preventDefault();
  e.stopPropagation();
  that.pauseScroll();
});
that.$refs.enoAutoScroll.addEventListener('mouseout', (e) => {
  e.preventDefault();
  e.stopPropagation();
  that.keepScroll();
});

I copy your first code and set the height. and it works well

<EnoAutoScroll style="height: 200px" :duration="20000">
  <div v-for="news in navNews" :key="news.id" class="li"> {{ news.data }} <span class="date">{{ news.date }}</span></div>
</EnoAutoScroll>

from eno-auto-scroll.

davidww2 avatar davidww2 commented on May 27, 2024

hi
Further to my comment the above
I solved the problem is-mouse-stop:
I used your Component Ref function-
I added events @mouseOver @mouseout

<EnoAutoScroll ref="enoAutoScroll" :duration="20000">
             <div class="li" v-for="news in navNews" :key="news.id" @mouseover="enoAutoScrollPauseScroll" @mouseout="enoAutoScrollKeepScroll">
               {{ news.data }}
               <span class="date">{{ news.date }}</span>
             </div>
           </EnoAutoScroll>

methods: {
  enoAutoScrollPauseScroll() {
     this.$refs.enoAutoScroll.pauseScroll();
   },

   enoAutoScrollKeepScroll() {
     this.$refs.enoAutoScroll.keepScroll();
   }
}

thank you

@reply

this component has add the 'mouseover' and 'mouseout' event listener.

the source:

 that.$refs.enoAutoScroll.addEventListener('mouseover', (e) => {
  e.preventDefault();
  e.stopPropagation();
  that.pauseScroll();
});
that.$refs.enoAutoScroll.addEventListener('mouseout', (e) => {
  e.preventDefault();
  e.stopPropagation();
  that.keepScroll();
});

I copy your first code and set the height. and it works well

<EnoAutoScroll style="height: 200px" :duration="20000">
  <div v-for="news in navNews" :key="news.id" class="li"> {{ news.data }} <span class="date">{{ news.date }}</span></div>
</EnoAutoScroll>

thank you so much

from eno-auto-scroll.

Related Issues (1)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.