仅在弹出窗口出现时加载图像

时间:2012-01-10 22:46:53

标签: jquery css ajax

首先,我是jQuery或AJAX的初学者。

我在网页上有大约50多个链接,每个链接都有一个div#popup,其中包含一个表格和一个img。这意味着当页面加载时,大约有50张图片正在加载,并且它会使网站慢一点。

所以我想知道是否有办法只在鼠标悬停链接时加载图片?\

这是我正在使用的代码和脚本。

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <title>jQuery Popup Div on hover Test</title>
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
    var moveLeft = 20;
    var moveDown = 10;

    $('a#trigger').hover(function(e) {
        $('div#pop-up').show();
    }, function() {
        $('div#pop-up').hide();
    });

    $('a#trigger').mousemove(function(e) {
        $("div#pop-up").css('top', e.pageY + moveDown).css('left', e.pageX + moveLeft);
    });
});
</script>
<style type="text/css">
.wpm_pag.mng_lts_chp.grp .det a.ttl{
    color: #0000ff;
    font-size:16px;
    line-height:12px;
    height:14px;
    display:block;
    padding:0 0 2px 0
}    

.wpm_pag.mng_lts_chp.grp .det div#pop-up table tr td img{
    border: 1px solid #e74f25;
}

.wpm_pag.mng_lts_chp.grp .det div#pop-up table{
    margin:0;
    background-color:#656565;
}

.wpm_pag.mng_lts_chp.grp .det div#pop-up table tr.firstR{
    background-color:black;
    height: 30px;
    font-size: 120%;
}

.wpm_pag.mng_lts_chp.grp .det div#pop-up table tr td.otherRow{
    height: 20px;
}

.wpm_pag.mng_lts_chp.grp .det div#pop-up table tr td.otherRow b{
    color: #3C3C3C;
}

/* Popup CSS */
.wpm_pag.mng_lts_chp.grp .det div#pop-up {
    display: none;
    position: absolute;
    padding: 0px 5px 5px 5px;
    background-color: #000;
    color: #FFF;
    border: 1px solid #1a1a1a;
    font-size: 110%;
    font-family:"Comic Sans MS", cursive, sans-serif;
}

</style>


</head>
<body>
<div class="wpm_pag mng_lts_chp grp">
    <div class="det">
        <p><a href="#" class="ttl" id="trigger">this link</a></p>
    <!-- HIDDEN / POP-UP DIV -->
    <div id="pop-up">
      <table width="650px" cellspacing="0" cellpadding="2px">
            <tr class="firstR">
                <td colspan="3">Nenee! Ane Tokitoki Kanojo</td>
                <td style="text-align: right;" width="25%">Rating</td>
            </tr>
            <tr>
                <td width="200px" rowspan="4"><img height="200" width="200" src ="http://gooddealstore.us/icon/test.jpg" alt="xxx" /></td> /** php echo url
                <td class="otherRow" colspan="3"></td>
            </tr>
            <tr>
                <td class="otherRow"><b>Release:</b></td> /** php 
                <td class="otherRow"><b>Author:</b></td>    echo
                <td class="otherRow"><b>Artist:</b></td>   **/
            </tr>
            <tr>
                <td class="otherRow" colspan="3"><b>Genres:</b></td>
            </tr>
            <tr>
                <td style="vertical-align: top;" colspan="3"></td>
            </tr>
        </table>
    </div>

  </div>
</body>
</html>

2 个答案:

答案 0 :(得分:1)

我会给每个锚标记添加网址并制作像jsfiddle

这样的标记

HTML:

<ul>
    <li><a href="http://placehold.it/100x100" class="imageLink">Image 1</a></li>
    <li><a href="http://placehold.it/100x110" class="imageLink">Image 2</a></li>
    <li><a href="http://placehold.it/100x90" class="imageLink">Image 3</a></li>
</ul>
<div id="imageContainer">
</div>

JS

var l = $(".imageLink").click(function(e) {
    e.preventDefault();
}).hover(function(e) {
    var imageUrl = $(this).attr('href'),
        container = $('#imageContainer').show(),
        image = $("#imageContainer > img[src='" + imageUrl + "']");
    if(image.length > 0) {
        image.show();
    } else {
        container.append("<img src='" + imageUrl + "' />");
    }
}, function() {
    $('#imageContainer, #imageContainer > img').hide();
});

我所做的是使用锚点中的​​href将图像添加到dom中。如果元素已经存在(我使用他们的src检查div中的图像)我只是显示图像。如果我们将此想法应用于您的示例,我会将td元素赋予id imageContainer,以便在那里添加图像元素。

答案 1 :(得分:1)

您可能需要查看此jQuery插件:http://www.appelsiini.net/projects/lazyload和YUI 2 Imageloader http://developer.yahoo.com/yui/imageloader/