0

現在、ラジオボタンとチェックボックスを使用して、値に基づいて画像を表示しています。最初は画像の読み込みが遅いことに気づきました。たとえば、「display:none」(src属性がすでに設定されている)を使用して画像要素を事前に作成しているので、私がしなければならないのはdisplay属性で遊ぶことだけです。画像をプリロードする場所はありますか?

JS

<script>
function check_value(currentElement, val, id, type) {
    var el = document.getElementById("imgBox" + id);
    if (val > 0 && val < 4) { //will trigger when [1,2,3]

        if(currentElement.checked)
        {
            el.src = "images/" + type + val + ".jpg";
            el.style.display = "";
        }
        else
        {
            el.src = "";
            el.style.display = "none";
        }       

    }
}    
</script>

HTML

<h2>Choose a bike</h2>
<form name="builder">
    <input type="radio" name="field" onclick='check_value(this, 1, 1, "bike")'/> KAWASAKI KX 450F<br />
    <input type="radio" name="field" onclick='check_value(this, 2, 1, "bike")'/> 2010 Yamaha Road Star S<br />
    <input type="radio" name="field" onclick='check_value(this, 3, 1, "bike")'/> Aprilia RSV4<br />
</form>
4

2 に答える 2

1

はい!JQuery があれば、画像のプリロードは非常に簡単です。

$.fn.preload = function() {
    this.each(function(){
        $('<img/>')[0].src = this;
    });
}

$(['some-image.gif']).preload();

このリソースも確認してください: http://perishablepress.com/3-ways-preload-images-css-javascript-ajax/

于 2012-09-08T19:10:03.803 に答える
0

しばらく前に自分用に作成した関数を次に示します: http://pastebin.com/GeBawE8r

次のように使用できます。

var loader = new imagePreloader();

// Object containing the names of the imgs as keys and url as values
loader.list = {name: "url"...};

// function to call when done loading everything
loader.onload = ... 

// function to call at each time it loades a single image of the list
loader.each = ... 

// function to call when unable to load one of the images 
loader.onerror = ... 

// set this to true to continue even if some of the images fail to load 
loader.ignoreErrors = true/false

// Starts loading the images
loader.load();

読み込みが完了すると、プロパティreadyが true に設定され、オブジェクト内の画像にアクセスできるようになりlistます。

if(loader.ready)
    alert(loader.list.myImageName); // Image object

http://jsfiddle.net/uttZw/1

于 2012-09-08T19:34:42.763 に答える