Skip to main content
Known Participant
July 1, 2019
解決済み

Javascript

  • July 1, 2019
  • 返信数 3.
  • 684 ビュー

Is there any way to trigger javascript on a rollover, rather than a mouse click when publishing for html5?

    このトピックへの返信は締め切られました。
    解決に役立った回答 TLCMediaDesign

    On slide enter you would need to add an event listener for the object:

    object.addEventListener("mouseover", myScript);

    返信数 3

    Participant
    April 6, 2020
    TLCMediaDesign
    Inspiring
    July 1, 2019

    On slide enter you would need to add an event listener for the object:

    object.addEventListener("mouseover", myScript);

    davids9540211作成者
    Known Participant
    July 1, 2019

    Thanks so much!