你的白色箭頭是圖片還是文字呢?如果是類(lèi)似搜狗輸入法特殊符號(hào)的話,JS中沒(méi)有就不會(huì)翻譯過(guò)來(lái),如果是圖片的話,可否把相應(yīng)的CSS發(fā)上來(lái)看一下

創(chuàng)新互聯(lián)從2013年成立,先為蕉嶺等服務(wù)建站,蕉嶺等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢(xún)服務(wù)。為蕉嶺企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問(wèn)題。
keys?這個(gè)是哪來(lái)的,jqgrid中在editGridRow,viewGridRow中才有navkeys的設(shè)置,設(shè)置了以后進(jìn)入formedit就能用上下箭頭進(jìn)行移動(dòng)行
a href="#" id="toggle" class="top"展開(kāi)img src="img/1401957442.png" / /abr /
$("#toggle").click(function() {
$(this).html($("#content").is(":hidden") ? "收起"+"img src='img/1401957442.png' /" : "展開(kāi)"+"img src='img/1401957442.png' /");
$("#content").slideToggle();
});
按你這種寫(xiě)法,直接把三角的圖片跟那個(gè)文字寫(xiě)在一起,要不然還真不太方便控制。把text方法改成html方法。
圖片路徑記得改
工具:網(wǎng)頁(yè)調(diào)試工具如火狐firebug,還有谷歌自帶的前端調(diào)試叫什么忘記了,
打開(kāi)網(wǎng)頁(yè),F(xiàn)12 進(jìn)入調(diào)試,查看元素 ,鼠標(biāo)移上去看就知道了,比如你這張圖片在這個(gè)網(wǎng)頁(yè)是這樣的img class="ikqb_img" src="" esrc=""
可以,就是加個(gè)箭頭模塊,然后添加onclick事件,讓它具備跳轉(zhuǎn)圖片的功能。
用css吧,CSS就行的,例如:
順時(shí)針旋轉(zhuǎn)90度:
-moz-transform:rotate(90deg);
-webkit-transform:rotate(90deg);
-o-transform:rotate(90deg);
transform:rotate(90deg);
filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
其它度數(shù)請(qǐng)自行修改下,可以用在LOGO之類(lèi)的Hover效果,360度的話,參考下:
p
img{
-moz-transition:
all
0.8s
ease-in-out;
-webkit-transition:
all
0.8s
ease-in-out;
-o-transition:
all
0.8s
ease-in-out;
-ms-transition:
all
0.8s
ease-in-out;
transition:
all
0.8s
ease-in-out;
}
p
img:hover{
-moz-transform:
rotate(360deg);
-webkit-transform:
rotate(360deg);
-o-transform:
rotate(360deg);
-ms-transform:
rotate(360deg);
transform:
rotate(360deg);
}
/*繞Z軸的*/
img{
-webkit-transition:
0.4s;
-webkit-transition:
-webkit-transform
0.4s
ease-out;
transition:
transform
0.4s
ease-out;
-moz-transition:
-moz-transform
0.4s
ease-out;
}
img:hover{
transform:
rotateZ(360deg);
-webkit-transform:
rotateZ(360deg);
-moz-transform:
rotateZ(360deg);
}
當(dāng)前文章:jquery箭頭,css實(shí)現(xiàn)箭頭
網(wǎng)頁(yè)地址:http://chinadenli.net/article12/dseeigc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供域名注冊(cè)、靜態(tài)網(wǎng)站、微信公眾號(hào)、標(biāo)簽優(yōu)化、動(dòng)態(tài)網(wǎng)站、網(wǎng)站內(nèi)鏈
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)