点击放大图片。 JavaScript的

时间:2015-04-07 08:23:12

标签: javascript html css image-enlarge

在这里找到一个指南,通过点击放大图片但不太合适。当我点击放大图像时,小的一个留在前面。

我把它放在我的html中:

            <div class="bild1"><script type="text/javascript" src="funktions.js"></script>
            <img  src="bilder/3D.png" alt="Almanacka-projekt" style="cursor:pointer" onclick="showImage('bilder/3D_stor.png');">
            <div id="largeImgPanel" onclick="hideMe(this);">
            <img id="largeImg" style="height: 100%; margin: 0; padding: 0;">
           </div> 
        </div>

        <div class="bild2">
            <img  src="bilder/TopGame.png" alt="Almanacka-projekt" style="cursor:pointer" onclick="showImage('bilder/TopGame_stor.png');">
            <div id="largeImgPanel" onclick="hideMe(this);">
            <img id="largeImg" style="height: 100%; margin: 0; padding: 0;">
           </div>
        </div>

        <div class="bild3">
            <img  src="bilder/almanacka.png" alt="Almanacka-projekt" style="cursor:pointer" onclick="showImage('bilder/Almanacka_stor.png');">
            <div id="largeImgPanel" onclick="hideMe(this);">
            <img id="largeImg" style="height: 100%; margin: 0; padding: 0;">
            </div>
        </div>

的CSS:

#largeImgPanel {
text-align: center;
visibility: hidden;
position: fixed;
z-index: 100;
top: 0; left: 0; 
width:100%;
height:100%; 
background-color: rgba(100,100,100, 0.5);}

的javascript:

        function showImage(imgName) {
document.getElementById('largeImg').src = imgName;
showLargeImagePanel();
unselectAll();

}
function showLargeImagePanel() {
document.getElementById('largeImgPanel').style.visibility = 'visible';

}

function unselectAll() {
if(document.selection) document.selection.empty();
if(window.getSelection) window.getSelection().removeAllRanges();

}

function hideMe(obj) {
obj.style.visibility = 'hidden';}

当我有多张照片时,我应该采用不同的方式吗?

2 个答案:

答案 0 :(得分:1)

看起来很棒,你需要加载图片!也许如果您已经使用过jQuery,则应该使用淡入淡出添加动态,例如http://api.jquery.com/category/effects/

答案 1 :(得分:0)

我有同样的问题尝试这个编辑它对我有用

            <div class="bild1"><script type="text/javascript" src="funktions.js"></script>
        <img  src="bilder/3D.png" alt="Almanacka-projekt" style="cursor:pointer" onclick="showImage('bilder/3D_stor.png');">
    </div>

    <div class="bild2">
        <img  src="bilder/TopGame.png" alt="Almanacka-projekt" style="cursor:pointer" onclick="showImage('bilder/TopGame_stor.png');">
    </div>

    <div class="bild3">
        <img  src="bilder/almanacka.png" alt="Almanacka-projekt" style="cursor:pointer" onclick="showImage('bilder/Almanacka_stor.png');">
        <div id="largeImgPanel" onclick="hideMe(this);">
        <img id="largeImg" style="height: 100%; margin: 0; padding: 0;">
        </div>
    </div>