简体   繁体   中英

how to modify slimbox to close by clicking on expanded image

I am using Slimbox 1.71 for MooTools 1.2 ( Demo )
I would like to close the expanded Image if I click on the expanded image itself.

How would I do that?

Modifying the core script is bad practice (say you update the script - you'll lose your changes). It's actually better to add a code snippet after the library is loaded, and operational:

document.id('lbImage').addEvent('click', function(){
    document.id('lbCloseLink').fireEvent('click');
});

Find:

id:"lbCenter"

Replace:

id:"lbCenter", events: {click: close}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM