Top Quality Products

jQuery ViewBox HTML5 Revolution – Media Browser

4
Expert ScoreRead review

$10.00

Added to wishlistRemoved from wishlist 0
Add to compare

61 sales

LIVE PREVIEW

jQuery ViewBox HTML5 Revolution – Media Browser

jQuery ViewBox HTML5 Revolution: A Powerful Media Browser Review

As a web developer, I’m always on the lookout for innovative solutions to enhance my projects. Recently, I had the opportunity to test the jQuery ViewBox HTML5 Revolution – Media Browser, and I must say, I’m impressed. This powerful script offers a wide range of features, making it an excellent alternative to traditional LightBox solutions.

Easy to Use

The first thing that caught my attention was the ease of use. The script comes with a straightforward documentation and a simple API, making it easy to integrate into any project. The syntax is intuitive, and the examples provided help you get started quickly.

Key Features

  • Responsive Design: The ViewBox window is responsive, ensuring a seamless experience across various devices and screen sizes.
  • Photo Galleries: Create beautiful photo galleries with ease, complete with navigation and customizable layouts.
  • Video Support: Support for popular video services like YouTube, Vimeo, and more.
  • Social Media Buttons: Easily add Facebook, Twitter, and Google+ buttons to share your content.
  • Customizable: Change the appearance via CSS, giving you full control over the design.
  • Built-in Player: JW Player is included, providing a high-quality video playback experience.
  • AJAX, iFrame, and Inline Support: Multiple rendering options allow you to choose the best approach for your project.
  • Keyboard Support: Users can navigate and control the ViewBox using keyboard shortcuts.
  • Preloader: Add a preloader to your photo galleries for a seamless experience.
  • Custom Keys: Set custom keys to control the ViewBox, offering flexibility and customization.

Support for the Most Popular Video Services

The script supports a wide range of video services, including:

  • YouTube
  • Vimeo
  • DailyMotion
  • 5min
  • MetaCafe
  • Ustream
  • Hell TV
  • VEVO
  • MySpace

Score: 4/5

While the jQuery ViewBox HTML5 Revolution – Media Browser is an impressive script, there are a few areas for improvement. The documentation could be more comprehensive, and some users may find the initial setup process overwhelming. However, the overall performance and feature set make it an excellent choice for any project.

Conclusion

The jQuery ViewBox HTML5 Revolution – Media Browser is an excellent addition to any web developer’s toolkit. With its responsive design, easy-to-use API, and comprehensive feature set, it’s an ideal solution for creating beautiful media galleries and video players. If you’re looking for a reliable and customizable alternative to traditional LightBox solutions, I highly recommend giving this script a try.

Rating: 4/5

User Reviews

0.0 out of 5
0
0
0
0
0
Write a review

There are no reviews yet.

Be the first to review “jQuery ViewBox HTML5 Revolution – Media Browser”

Your email address will not be published. Required fields are marked *

Introduction to jQuery ViewBox HTML5 Revolution - Media Browser Tutorial

In this tutorial, we will explore the power of jQuery ViewBox, a HTML5-based media browser that allows you to easily display and manage video and image content on your website. With its versatile and customizable interface, you can create a unique multimedia experience for your users.

What is jQuery ViewBox?

jQuery ViewBox is a lightweight JavaScript library that provides a Media Browser-like interface for viewing and interacting with multimedia files. It is built using HTML5 and CSS3, making it compatible with modern browsers and devices.

Getting Started with jQuery ViewBox

To use jQuery ViewBox, you will need to include the necessary JavaScript and CSS files in your HTML document. You can download the jQuery ViewBox library from their official website or use a CDN link.

Installing jQuery ViewBox

There are two ways to include jQuery ViewBox in your project:

  1. Download and Host Locally: Download the jQuery ViewBox library from their official website and host it locally on your server. Add the following code to your HTML file:
    <script src="path/to/viewbox.min.js"></script>
    <link rel="stylesheet" href="path/to/viewbox.min.css">
  2. Use a CDN Link: You can also include jQuery ViewBox using a CDN link. Add the following code to your HTML file:
    <script src="https://cdn.jsdelivr.net/npm/@viewbox/viewbox@latest/dist/viewbox.min.js"></script>
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@viewbox/viewbox@latest/dist/viewbox.min.css">

    Basic Structure of a jQuery ViewBox Instance

To create a jQuery ViewBox instance, you will need to specify the following elements:

  1. Container Element: Define a container element where you want to render the Media Browser.
  2. Media Sources: Define an array of media sources, including video and image files.
  3. Layout Options: Define layout options, such as the default layout, grid size, and image/video ratio.
  4. Theme: Define the theme for your Media Browser.

Here is an example of a basic jQuery ViewBox instance:

<div id="viewbox-container"></div>

<script>
  jQuery(document).ready(function($){
    var viewBox = $('#viewbox-container').viewbox({
      mediaSources: [
        {
          src: 'https://example.com/video1.mp4',
          type: 'video'
        },
        {
          src: 'https://example.com/image1.jpg',
          type: 'image'
        }
      ],
      layoutOptions: {
        defaultLayout: 'grid',
        gridSize: 3,
        ratio: 16/9
      },
      theme: 'default'
    });
  });
</script>

Configuring the Media Browser

jQuery ViewBox provides a variety of configuration options to customize the appearance and behavior of the Media Browser. These options can be set globally or for individual media sources.

Some common configuration options include:

  • MediaType: Set the media type for individual media sources.
  • PosterImage: Set a poster image for individual media sources.
  • Layout: Set a custom layout for individual media sources.
  • Size: Set a custom size for individual media sources.

Using the Media Browser

Once you have configured your jQuery ViewBox instance, you can use the media browser to display and manage your multimedia content. Here are some common actions:

  • Play/Pause: Use the play and pause buttons to control video playback.
  • Fast Forward/Rewind: Use the fast forward and rewind buttons to control video playback speed.
  • Full Screen: Use the full screen button to display the media browser in full screen mode.
  • Close: Use the close button to close the media browser.

Conclusion

In this tutorial, we have explored the basics of jQuery ViewBox, including installation, configuration, and usage. With its rich set of features and customization options, jQuery ViewBox can help you create a unique multimedia experience for your users. In the next sections, we will dive deeper into advanced topics, such as layout customization, interactive elements, and integration with other libraries.

Here is a complete settings example for jQuery ViewBox HTML5 Revolution - Media Browser:

Initialization Options

$('#media_browser').viewbox({ // mandatory: mediabrowser instance id mbId: 'myMb', // mandatory: media list medias: [ {'id': 'video-1', 'type': 'video', 'sources': ['https://cdn.example.com/video1.mp4']}, {'id': 'image-1', 'type': 'image', 'src': 'https://cdn.example.com/image1.jpg'}, {'id': 'video-2', 'type': 'video', 'sources': ['https://cdn.example.com/video2.mp4']} ] });

Autoplay Settings

$.viewbox.options.autoplay.enabled = true; $.viewbox.options.autoplay.startMediaId = 'video-1';

Volume Control Settings

$.viewbox.options.volumeControl.enabled = true; $.viewbox.options.volumeStep = 0.1;

Navigation Options

$.viewbox.options.playPauseButton.html = 'Play/Pause'; $.viewbox.options.prevNextButton.html = 'Prev < Next';

Lightbox Options

$.viewbox.options.lightbox.enabled = true; $.viewbox.options.lightbox.animationSpeed = 300;

Responsive Design Options

$.viewbox.options.breakpoints = { xl: { max.width: 1280, min.width: 1024 }, l: { max.width: 1023, min.width: 768 }, m: { max.width: 767, min.width: 480 }, s: { max.width: 479 } };

$.viewbox.options.minWidth = 480; $.viewbox.options.minHeight = 320;

Here are the features of the jQuery ViewBox HTML5 Revolution - Media Browser:

  1. Photo Galleries: Create a nice media gallery on your site with photos.
  2. Support for video: Support for various video services, including YouTube, Vimeo, DailyMotion, 5min, MetaCafe, Ustream, Hell TV, VEVO, and MySpace.
  3. Responsive ViewBox window: The ViewBox window is responsive, making it easy to use on different devices and screen sizes.
  4. Social Media buttons: Include Facebook, Twitter, and Google+ buttons that redirect links to the ViewBox window.
  5. Button to set original size: Users can set the original size of the media.
  6. Preloader for photo galleries: Add a preloader to photo galleries for a smoother user experience.
  7. Image to player: Add an image to the player.
  8. Built-in player: Use the built-in JW Player (Creative Commons Attribution-NonCommercial-ShareAlike 3.0).
  9. AJAX, iFrame, and Inline: Support for different rendering modes, including AJAX, iFrame, and Inline.
  10. Keyboard support: Users can control the ViewBox window using their keyboard.
  11. Custom keys to control: Set custom keys to control the ViewBox window.
  12. Easy to change appearance via CSS: Customize the appearance of the ViewBox window using CSS.

Additionally, the product offers:

  • Full support: The author offers full support for customers.
  • Easy to use: The script is easy to use, making it accessible to users with varying levels of technical expertise.
  • Follow me on CodeCanyon: The author invites customers to follow them on CodeCanyon.
  • Contact me: Customers can contact the author for support or any other inquiries.
jQuery ViewBox HTML5 Revolution – Media Browser
jQuery ViewBox HTML5 Revolution – Media Browser

$10.00

Shop.Vyeron.com
Logo
Compare items
  • Total (0)
Compare
0