简体   繁体   中英

CSS/Image Rollover/jQuery?

I am unsure how to approach this. I have an image that when you roll over parts of this a word or another picture will pop-out. That I am pretty confident I can do, the one part I am unsure about is can I get those to remain on the picture after rollover or on click? Maybe do some of this with jQuery?

Thanks for the advice

jQuery:

$('.imageClass').click('#linkId').show(); It should not disappear unless you use the.toggle() or.bind() function.

$('.foo').click(function() {
   $('.something').show();
});

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