Skip to content Skip to sidebar Skip to footer

Display File Upload Dialog Box Onclick Mask Images

There are two types of images in our json files.... 1.Mask images Which have Transparent background as below : 2.Background images : Any normal images Sample Json for Mask ima

Solution 1:

Simply add pointer-events: none using JS so that is not clickable

if (name.indexOf('mask_') !== -1) {
    var imageUrl1 = imageUrl;
} else {
    var imageUrl1 = '';
    $('.masked-img').css('pointer-events', 'none');
}

Post a Comment for "Display File Upload Dialog Box Onclick Mask Images"