Show bigger image on thumbnail's hover

前端 未结 4 1989
盖世英雄少女心
盖世英雄少女心 2021-01-03 02:41

For a list of images I have the urls for the squared thumbnail http://example.com/img1_thumb.jpg and for the original size (any proportion) http://exampl

4条回答
  •  长情又很酷
    2021-01-03 02:48

    Use JQuery:

    $(function() {
          $('#thumbnails img').click(function() {
                $('#thumbnails').hide();
                var src = $(this).attr('src').replace('.png', 'Large.png');
                $('#largeImage').attr('src', src).show();
          });
          $('#largeImage').hide().click(function() {
                $(this).hide();
                $('#thumbnails').show();
          });
    });
    
    
    ...

提交回复
热议问题