Video Previews Effects

Video Previews with effects config

This example demonstrates configuring different effects.

Possible effects.

    
   <div class="flex w-full">
          <div id="effects" class="is-splash"></div>
  </div>
  <script type="text/javascript">
  	var player = flowplayer("#effects", {
    "clip": {
        "previewsurl": "../../data/previews.json",
        "sources": [
            {
                "src": "https://videos.electroteque.org/bitrate/big_buck_bunny_2000k.webm",
                "type": "video/webm"
            },
            {
                "src": "https://videos.electroteque.org/bitrate/big_buck_bunny_2000k.mp4",
                "type": "video/mp4"
            },
            {
                "src": "https://videos.electroteque.org/bitrate/big_buck_bunny_2000k.ogv",
                "type": "video/ogg"
            }
        ]
    },
    "share": false,
    "videopreviews": {
        "effects": "crossZoom"
    }
});
  </script>