it is possible to overwrite the charging method of an image so that this loading is done by a WebWorker?
Example:
Image.prototype.contructor = function(arguments){ // Webworker implementation }
//or
Image.prototype.setSrc = function(arguments){ // Webworker implementation }
var image = new Image('somePath.jpg'); //or
image.setSrc('somePath.jpg');
I need it because I need to carry many images on a single screen only once using ionic framework, and loading it stands today is fighting the UI Thread and perhaps using a WebWorker I improve performance