Ⅰ 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;
}
添加點擊事件,跳轉鏈接就可以了