Ⅰ js切换图片上怎么加链接
switch (index) {
case 1:
$('#big-screen').css("background-image", "url("+bannerData[0][3]+")");
$('#big-screen').click(function(){
location.href="xxx.com";
});
break;
case 2:
$('#big-screen').css("background-image", "url("+bannerData[1][3]+")");
$('#big-screen').click(function(){
location.href="yyy.com";
});
break;
Ⅱ 怎么给JS代码中的图片加超链接
如图,项目结构如下
希望能帮到你。
Ⅲ js图片上怎么设置热区
//MAP1名称
varmapName1="Map1";
//MAP1ID
varmapId1="MapId1";
//指定DIV名称
vardivnId="mask";
//图片路径
varimgPath="";
main=function(type){
varobj;
switch(type){
case"aa":
//指定图片及热点对象取得
obj=imgMapList[0];
//创建图片及热点
creatImpAndHot(obj);
break;
}
}
creatImpAndHot=function(hotObj){
//创建热点MAP对象
varmap=document.createElement_x("Map");
//设置MAP名称
map.name=mapName1;
//设置MAPID
map.id=mapId1;
//热点列表取得
varlength=hotObj.map.length;
for(vari=0;i<length;i++){
vartempMap=hotObj.map[i];
//创建热区对象
area=document.createElement_x("area");
//设置热区类型
area.shape=tempMap.shape;
//设置热区坐标
area.coords=tempMap.coords;
//设置热区对应链接
area.href=tempMap.href;
//设置热区对应事件
area.onclick=tempMap.onclick;
//设置热区id
area.id=tempMap.id;
//向MAP中追加热区对象
map.appendChild(area);
}
//创建图片对象
varimg=document.createElement_x("img");
//图片ID
img.id=hotObj.img.id;
//设置图片链接
img.src=hotObj.img.imgName;
//设置图片对应热区MAP
img.useMap="#"+mapName1;
//设置图片尺寸
img.width=hotObj.img.width;
img.height=hotObj.img.height;
//边框
img.border="0";
//设置图片ID
img.id=hotObj.id;
//清空指定DIV内容
document.getElementByIdx_x(divnId).innerHTML='';
//向DIV区添加MAP对象
document.getElementByIdx_x(divnId).appendChild(map);
//向DIV区添加图片对象
document.getElementByIdx_x(divnId).appendChild(img);
}
testClick=function(){
alert();
}
creatImgAndMap=function(){
vartempArray=newArray();
vartempObj=newObject();
//图片ID
tempObj.img=newObject();
tempObj.img.id="test1";
//图片名称(只要图片名称,路径由公共变量设置)
tempObj.img.imgName="113.jpg";
//设置图片尺寸
tempObj.img.width="640";
tempObj.img.height="200";
vartempMap;
tempObj.map=newArray();
//热点1
tempMap=newObject();
//热区ID
tempMap.id="test1_hot1"
//类型
tempMap.shape="rect";
//热区坐标
tempMap.coords="159,167,238,191";
//链接
tempMap.href="#";
//单击事件
tempMap.onclick=testClick;
//添加到列表中
tempObj.map[0]=tempMap;
//热点2
tempMap=newObject();
//热区ID
tempMap.id="test1_hot2"
//类型
tempMap.shape="rect";
//热区坐标
tempMap.coords="147,7,286,33";
//链接
tempMap.href="#";
//单击事件
tempMap.onclick=testClick;
//添加到列表中
tempObj.map[1]=tempMap;
//将图片及相应热区信息添加到列表中
tempArray[0]=tempObj;
returntempArray;
};
//热点映射
varimgMapList=creatImgAndMap();
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<htmlxmlns="http://www.w3.org/1999/xhtml">
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/>
<title>无标题文档</title>
<scripttype="text/javascript"src="img.js"></script>
<scripttype="text/javascript">
functionabc(){
main("aa");
}
</script>
</head>
<body>
<divid="mask">
<inputtype="button"value="set"onClick="abc()">
</div>
</body>
</html>
Ⅳ js/jq、鼠标提留在图片热点时的事件。特效
问题描述不是很清晰,你是不是想实现鼠标划过控制元素的显示和隐藏功能?
说明:隐藏的元素本身是无法触发鼠标经过的事件的,所以我们默认元素是可见的,然后用jq把元素的透明度(opacity)设为0,这个时候虽然也看不见,但是元素实际是存在那个位置的,可触发鼠标事件的,然后鼠标经过时,透明度设为1,即可。
原创不易,求满意。。。
以下是完整的html代码,拷贝到任意的html文件即可调试:
<style>
.promptStyle {
width: 200px;
height: 150px;
background-color: white;
position: absolute;
border: 1px solid #ddd;
}
</style>
<script src="http://code.jquery.com/jquery-1.8.0.min.js"></script>
<script>
function ShowPrompt(objEvent) {
var divObj = document.getElementById("promptDiv");
divObj.style.visibility = "visible";
divObj.style.left = objEvent.clientX + 10;
divObj.style.top = objEvent.clientY + 10;
}
function HiddenPrompt() {
divObj = document.getElementById("promptDiv");
divObj.style.visibility = "hidden";
}
$(function(){
$('#promptDiv').css('opacity',0).hover(function(){
$(this).animate({'opacity':1});
},function(){
$(this).animate({'opacity':0});
});
});
</script>
鼠标移到这行字的下面试试
<div id="promptDiv" class="promptStyle" > Loudly. </div>
Ⅳ 如何用js给图片加超链接啊
document.getElementById("imageId").onclick = function(){
window.location.href = url;
}
添加点击事件,跳转链接就可以了