サイトマップ

JavaScriptコードスニペット:スプラッシュ画像を表示する

【コードサンプル】

(function(src) {
    var img = document.body.appendChild(document.createElement("img"));
    img.src = src;
    img.style.position = "fixed";
    img.style.left = "50%";
    img.style.top = "50%";
    img.style.zIndex = 9999;
    img.style.display = "none";
    img.onload = function() {
        img.style.display = "block";
        img.style.marginLeft = (-img.offsetWidth / 2) + "px";
        img.style.marginTop = (-img.offsetHeight / 2) + "px";
        setTimeout(function() {
            img.parentNode.removeChild(img);
        }, 3000);
    }
})('http://shorindo.com/lib/plugins/comingsoon/images/comingsoon.jpg');

【サンプルの実行】クリックしてください。

JavaScriptコードスニペット

 
research/1308640573.txt · 最終更新: 2011/07/08 18:03 by Kazuyuki Matsuda
特に明示されていない限り、本サイトの内容は次のライセンスに従います:Copyright(C) 2011 Shorindo, Inc. All Rights Reserved
Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki