开发者

CSS/Image Rollover/jQuery?

开发者 https://www.devze.com 2023-03-19 10:30 出处:网络
I am unsu开发者_StackOverflowre 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

I am unsu开发者_StackOverflowre 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();
});
0

精彩评论

暂无评论...
验证码 换一张
取 消