hover on text link to change image

后端 未结 2 1488
半阙折子戏
半阙折子戏 2020-12-22 02:29

I\'m working on a project and need to work out some simple jquery for a text rollover that changes the image in the div behind it.

See the idea here - http://sharif

2条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-22 03:29

    Hmz considering I understood corectly you want this:

    HTML

    
    

    JS

    $("#nav").hover(function(){$('#slider').hide();}, function(){$('#slider').show()});
    

提交回复
热议问题