| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A simple and easy-to-use dynamic select with images using HTML and JavaScript. This project allows you to create a dynamic select dropdown that displays images alongside the options, enhancing user experience and adding a visual touch to dropdown menus.
The complete guide and reference is available here: https://codeshack.io/multi-select-dropdown-html-javascript/
Download the latest stable version from the releases section.
Include the necessary CSS and JavaScript files in your project:
<link href="DynamicSelect.css" rel="stylesheet" type="text/css">
<script src="DynamicSelect.js"></script>Initialize the dynamic select element in your HTML file:
<select id="dynamic-select" name="example-select" data-placeholder="Select an option" data-dynamic-select>
<option value="1" data-img="path/to/image1.jpg">Option 1</option>
<option value="2" data-img="path/to/image2.jpg">Option 2</option>
<option value="3" data-img="path/to/image3.jpg">Option 3</option>
</select>Optional: Initialize the dynamic select with JavaScript:
new DynamicSelect('#dynamic-select', {
width: '200px',
height: '40px',
columns: 1,
placeholder: 'Select an option',
onChange: function(value, text, option) {
console.log(value, text, option);
}
});To use this dynamic select with images in your project, follow these steps:
Include the necessary HTML structure:
<select id="dynamic-select">
<option value="1" data-img="path/to/image1.jpg">Option 1</option>
<option value="2" data-img="path/to/image2.jpg">Option 2</option>
<option value="3" data-img="path/to/image3.jpg">Option 3</option>
</select>Initialize the dynamic select with JavaScript:
new DynamicSelect('#dynamic-select', {
placeholder: 'Select an option',
columns: 1,
width: '300px',
height: '40px',
data: [
{ value: '1', text: 'Option 1', img: 'path/to/image1.jpg' },
{ value: '2', text: 'Option 2', img: 'path/to/image2.jpg' },
{ value: '3', text: 'Option 3', img: 'path/to/image3.jpg' }
],
onChange: function(value, text, option) {
console.log(value, text, option);
}
});You can also use custom HTML content for the options:
<select id="custom-select">
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
</select>new DynamicSelect('#custom-select', {
placeholder: 'Select an option',
data: [
{ value: '1', html: '<img src="path/to/image1.jpg" alt="Option 1"><span>Option 1</span>' },
{ value: '2', html: '<img src="path/to/image2.jpg" alt="Option 2"><span>Option 2</span>' },
{ value: '3', html: '<img src="path/to/image3.jpg" alt="Option 3"><span>Option 3</span>' }
],
onChange: function(value, text, option) {
console.log(value, text, option);
}
});For dropdown options to be displayed in multiple columns:
<select id="multi-column-select"></select>new DynamicSelect('#multi-column-select', {
columns: 3,
height: '100px',
width: '160px',
dropdownWidth: '400px',
placeholder: 'Select a photo',
data: [
{ value: '1', img: 'path/to/image1.jpg', imgWidth: '100px', imgHeight: '80px' },
{ value: '2', img: 'path/to/image2.jpg', imgWidth: '100px', imgHeight: '80px' },
{ value: '3', img: 'path/to/image3.jpg', imgWidth: '100px', imgHeight: '80px' },
{ value: '4', img: 'path/to/image4.jpg', imgWidth: '100px', imgHeight: '80px' },
{ value: '5', img: 'path/to/image5.jpg', imgWidth: '100px', imgHeight: '80px' },
{ value: '6', img: 'path/to/image6.jpg', imgWidth: '100px', imgHeight: '80px' }
],
onChange: function(value, text, option) {
console.log(value, text, option);
}
});It is useful if you want to populate images in a grid-like view.
To customize the dynamic select with images, you can modify the HTML and JavaScript as needed. The following options are available:
Example configuration:
new DynamicSelect('#dynamic-select', {
placeholder: 'Select an option',
columns: 2,
width: '300px',
height: '50px',
data: [
{ value: '1', text: 'Option 1', img: 'path/to/image1.jpg' },
{ value: '2', text: 'Option 2', img: 'path/to/image2.jpg' },
{ value: '3', text: 'Option 3', img: 'path/to/image3.jpg' }
],
onChange: function(value, text, option) {
console.log(value, text, option);
}
});This project is licensed under the MIT License. See the LICENSE file for details.
David Adams - info@codeshack.io
GitHub: https://github.com/codeshackio/dynamic-select-images-js
X (Twitter): https://twitter.com/codeshackio
| Back | FazBrowse Home | New Git URL |