对于Javascript,我是一个非常初学者,非常感谢您提供的任何帮助!我正在我的主页上创建一个功能框,其中三个标题将共享一个图片点。我发现了一个脚本,当标题翻转时会更改图像,但是很难分辨出页面打开时第一个标题是否与第一张图片一致。如何使我的悬停样式显示为已选中,然后保持最后一个标题已滚动,因此显示标题显示的标题是什么?这是my example
这是我正在使用的代码:
HOVER STYLE:
a.feature:hover {
font-size: 0.9em;
font-family: "trebuchet ms", Arial, Helvetica, sans-serif;
color: #b0171f;
font-weight: bold;
background-image: url(../zimgart/nav/bgfeature.jpg);
background-repeat: no-repeat;
text-decoration: none;
padding: 5px 0 5px 10px;
display:block;
}
JAVASCRIPT:
<script>
/*Rollover effect on different image script-
By JavaScript Kit (http://javascriptkit.com)
Over 200+ free scripts here!
*/
function changeimage(towhat,url){
if (document.images){
document.images.targetimage.src=towhat.src
gotolink=url
}
}
function warp(){
window.location=gotolink
}
</script>
<script language="JavaScript1.1">
var myimages=new Array()
var gotolink="#"
function preloadimages(){
for (i=0;i<preloadimages.arguments.length;i++){
myimages[i]=new Image()
myimages[i].src=preloadimages.arguments[i]
}
}
preloadimages("photos/feature1.jpg",
"photos/feature2.jpg",
"photos/feature3.jpg")
</script>
答案 0 :(得分:2)
一般来说你应该用JS代码做这样的事情,当然最简单的就是使用jQuery。使用jQuery,它看起来像这样:
$(document).ready(function(){
$('A.feature').mouseover(functiond(e){
$('A.feature').removeClass('a_hover');
$(this).addClass('a_hover');
$('#bigimage').attr('src',$(this).attr('rel')); // big image effect, just example
})
});
我认为A-links的属性为rel ='bigimageulr'。 要安装jQuery,只需输入标题:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>