Ninja Slider / Posts /

Remove arrows once video is playing

22

I have my arrows inside my div so when I click to open my video I would like the arrows to disappear and then reappear once I close out of the video. I tried through JS but not able to target the ".stopVideoIcon" div because it isn't actually in the html I guess.

Brandon  7 years ago   viewed: 14073    

5 Answers

0

I think you are on track, and you have found the following code in ninjaVideoPlugin.js:

f.className="stopVideoIcon";f.onclick=function(a){g.unloadPlayer();a.stopPropagation()};

Then you can add your own function into the f.onclick event:

f.className="stopVideoIcon"; f.onclick=function(a){ if (myStopVideoCallback) myStopVideoCallback(); g.unloadPlayer();a.stopPropagation()};

And add the following script to your page:

<script>
function  myStopVideoCallback() {
$("#ninja-slider-prev").show();
$("#ninja-slider-next").show();
}
</script>
Milo   7 years ago
0

You are right and it is important to remember to add your own function into the f.onclick Drift Boss


victorable
  11 months ago
0
I guess you're right on track just adding those scripts above would make it even more accurate.

ad fraud heating maintenance plumbing repair Baltimore

Kryz
  one year ago
0

One possible solution is to use JavaScript to add a class to the parent <div> when the video is opened, and remove the class when the video is closed. 

Garten Of Banban

hena
  one year ago
0

The steps you did are already pretty good. Add a few more algorithms and you're done 

geometry dash bloodbath

larryellison
  8 months ago

   

Your name*
Password
(Optional. Used to modify this post afterwords)
+ =  

Ask your Own Question

  • If your question is related to the topic of this post, you can post your question to this page by clicking the "Post a reply" button at left;

  • When you want to start a new page for your question: