flowplayer without controlbar and in loopmode


/ Published in: HTML
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <a
  2. href="media/upload/video/helionics_webbanner_120x600.flv"
  3. style="display:block;width:120px;height:600px;"
  4. id="player">
  5. </a>
  6.  
  7. <script language="JavaScript">
  8. flowplayer("player", "media/swf/flowplayer-3.1.2.swf" ,{
  9. plugins: {
  10. // disable autoloading of the controlbar plugin
  11. controls: null
  12. },
  13. // disable the "overlay play button" (for some reason this does not work in this forum)
  14. // play: null,
  15.  
  16. // prevent pausing
  17. onBeforePause: function() {
  18. return false;
  19. },
  20.  
  21. // make the video loop
  22. onBeforeFinish: function() {
  23. return false;
  24. }
  25. });

URL: http://static.flowplayer.org/forum/2/25077

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.