@raphael_tillman
There is no built-in way to preload images into Dropzone.js. However, you can achieve this by preloading the images using JavaScript before initializing Dropzone.
Here is an example code snippet to preload images using JavaScript:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
var imageUrls = [ 'image1.jpg', 'image2.jpg', 'image3.jpg' ]; var images = []; function preloadImages() { imageUrls.forEach(function(url) { var img = new Image(); img.src = url; images.push(img); }); } preloadImages(); // Initialize Dropzone after preloading images Dropzone.autoDiscover = false; var myDropzone = new Dropzone("#myDropzone", { url: "/upload", addRemoveLinks: true }); |
In this code snippet, the preloadImages
function loads the images specified in the imageUrls
array using the Image
constructor. Once the images are preloaded, you can then initialize Dropzone and start uploading the images.
Remember to replace #myDropzone
with the ID of your Dropzone element.