gpt4 book ai didi

javascript - 图像上的标题文字

转载 作者:太空宇宙 更新时间:2023-11-04 14:05:50 27 4
gpt4 key购买 nike

对不起,这是一个新手问题。我想显示从我的服务器目录中拍摄的随机图片,我想显示与每个图像关联的文本(同一目录中的 txt 文件。示例:1.jpg -> 1.txt;2.jpg -> 2. TXT...)。我希望只有当鼠标悬停在图像上时,文本才会显示在图像上方,位于图像顶部的框架中。

javascript代码、css和html代码可以在这里找到:

http://jsfiddle.net/Totoleheros/ES22a/

html代码:

<img id="fullSize" onload="fixImage(this)" />
<div id="HOLDER">
<div id="theCaption"></div>
</div>
<img id="showImage" alt="random image" />

CSS 代码:

/* The first style is to hide the text*/
#theCaption {
position: absolute;
width: 200px;
height: 331px;
filter:alpha(opacity=0);
-moz-opacity:0;
-khtml-opacity: 0;
opacity: 0;
z-index: 3;
}
/*The send style is to show the text on hover*/
#theCaption:hover, #theCaption:active {
position: absolute;
width: 200px;
height: 40px;
background-color: #eeeeee;
color: #000000;
overflow: hidden;
font-family: arial;
font-weight: normal;
filter:alpha(opacity=80);
-moz-opacity:0.8;
-khtml-opacity: 0.8;
opacity: 0.8;
z-index: 3;
font-size: 10px;
line-height: 0.9em;
padding-top: 2px;
padding-right: 2px;
padding-bottom: 1px;
padding-left: 2px;
}

javascript代码:

function fixImage(image) {
// I want an to display an image of 200x331px taken from a directory of image of various dimensions
var show = document.getElementById("showImage");
if (image.height > image.width) {
show.style.height = "331px";
show.style.width = Math.round((image.width / image.height) * 331) + "px";
} else {
show.style.width = "200px";
show.style.height = Math.round((image.height / image.width) * 200) + "px";
}

show.src = image.src;
show.style.visibility = "visible";
}

var MAXPICTURENUMBER = 166; // or whatever you choose
var rn = 1 + Math.floor(MAXPICTURENUMBER * Math.random());
// Here I point to the directory containing the images and the caption
var url = "http://www.test.fr/Images/RandomPictures/" + rn + ".jpg";
var caption = "http://www.test.fr/Images/RandomPictures/" + rn + ".txt";

var xmlhttp;
if (window.XMLHttpRequest) {
xmlhttp = new XMLHttpRequest();
} else {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.open("GET", caption, false);
xmlhttp.send();
captionText = xmlhttp.responseText;

window.onload = function () {
document.getElementById("theCaption").innerHTML = captionText;
document.getElementById("fullSize").src = url;
}

我确信有比我正在使用的解决方案更清洁/更智能的解决方案,但请记住,我是新手。

我的问题:除了文本有时会根据鼠标位置消失外,这几乎可以正常工作。我该如何解决?

提前感谢您的帮助!!

最佳答案

我会把图片和标题放在同一个容器中。有点像

<div class="container">
<img class="image" src="image.png" />
<div class="caption">The caption</div>
</div>

在CSS中

.caption{position:relative; top:-20px; height:20px; display:none;}
.container:hover .caption{display:block;}

你显然可以风格。

编辑:这是最后的 fiddle :http://jsfiddle.net/ES22a/5部分问题是 jQuery 冲突,因此头部还有一个 jQuery.noConflict();

关于javascript - 图像上的标题文字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21120486/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com