Simple And Lightweight JavaScript Library Displays All Of Your Multimedia In One Compact Gallery | MixGallery.js

MixGallery.js is a streamlined, responsive, and filterable presentation box and lightweight javascript library where you can display all your multimedia in one compact gallery and support any kind of web content such as videos, audio, images, links, etc.

More Features:

  • It automatically classifies content based on media types.
  • Blur & Zoom Scrolling Effects.
  • Custom title, caption, and priority.

Must Read: Responsive Photo/Image Gallery in Pure JavaScript | Cube Gallery

How to make use of it:

1. Load the MixGallery.js library on your HTML web page.

<link rel="stylesheet" href="MixGallery.css" />
<script src="js/MixGallery.js"></script>

2. Create a container to carry the gallery.

<div id="gallery"></div>

3. Add your personal content material to the gallery.

const myContent = [
      {
        src: "1.jpg",
        type: "img",
        title: "Image Title",
        caption: "Description",
        priority: 1,
      },
      {
        src: "1.mp3",
        type: "audio",
        title: "Audio Title",
        caption: "Description",
        priority: 2,
      },
      {
        src: "https://google.com/",
        type: "link",
        title: "Google.Com",
        caption: "Description",
        priority: 3,
      },
      {
        src: "1.mp4",
        type: "video",
        title: "Video Title",
        caption: "Description",
        priority: 4,
      },
      // more content here
];

4. Initialize the gallery.

const mixgallery = MixGallery(document.querySelector("#gallery"), elements);

5. Render the gallery on the web page.

mixgallery.render();

6. Destroy the gallery.

mixgallery.destroy();

See Also –

Modern Photo/Video Gallery and Lightbox Plugin | nanogallery2
Lightbox Gallery Made With Vanilla JS Using Babel/Gulp
Lightweight And Responsive Image Gallery With Thumbnails For Vue.js


See Demo And Download

Official Website(arianajung): Click Here

This superior jQuery/javascript plugin is developed by arianajung. For extra Advanced Usage, please go to the official website.

Related Posts

VenoBox-Responsive-jQuery-Lightbox-Plugin

Responsive Image Gallery Lightbox jQuery Plugin | VenoBox

VenoBox is a responsive jQuery modal window plugin suitable for images, embedded content, iFrames, Google Maps, Vimeo, and YouTube videos. The big difference compared to many other…

bootstrap-dropdown-on-hover

[Animation] Bootstrap Multi-Level Responsive Dropdown Menu

Bootstrap-based multi-level dropdown navigation menu with cool animations. The dropdown on Hover is a jQuery plugin used to create Bootstrap multi-level scroll-triggered dropdown menus with CSS3 animations…

Bootstrap-Fileinput

HTML 5 File Input Optimized for Bootstrap 4.x./3.x with File Preview | Bootstrap Fileinput

bootstrap-fileinput is an improved HTML 5 file input  Bootstrap 5.x, 4.x and 3.x with file preview for different files, provides multiple selections, resumable section uploads, and more….

Data-Table-Generator-Tabulator

Interactive Data Table Generator with JS/jQuery and JSON | Tabulator

Tabulator allows you to create interactive tables in seconds from any HTML Table, JavaScript array, AJAX data source, or JSON format data. Just include the library in your…

alert-confirm-prompt-attention-js

Simple Alert, Confirm, Prompt Popup Using Vanilla JavaScript Library | attention.js

JavaScript provides various built-in functionality to display popup messages for different purposes. Attention JS is a vanillaJS plugin used to create a custom alert, confirm, or Prompt…

Bootstrap-4-Toast-Notification-Plugin

Lightweight Bootstrap 4 Toast Notification Plugin | BS4 Advanced Toast

A lightweight Bootstrap 4 Toast Notification plugin integrated with JS/jQuery. bs4-toast.js is a JavaScript library that enhances the native Bootstrap toast component with icons, buttons, callbacks, and…

Leave a Reply

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