導航:首頁 > 文字圖片 > js點擊圖片顯示隱藏文字

js點擊圖片顯示隱藏文字

發布時間:2023-10-24 05:58:20

1. 網頁實現點擊圖片後圖片消失顯示文字

給你實現思路:

撲克翻頁效果的原理在於利用眼睛觀察物體的錯覺,撲克翻頁效果分解為兩個步驟:

  1. 按撲克中軸線,以固定速率將img的width逐步變為0,這樣撲克將消失;

  2. 動態替換img為撲克反面,以同樣速率將img的width由0變為原寬度,完成翻頁。


關鍵代碼:

<div id="divad1" class="poker" style="text-align: center;">

<a onclick="javascript:flipPoker()" href="#"><img src="front.jpg" id="picad1" height="200" border="0" style="width: 200px; display: inline-block;"></a></div>


給這個div內的img元素綁定函數flipPoker

function flipPoker( ){

var tar = $('#picad1');

var origin = tar.attr('src');

var back = "back.jpg" //撲克背面圖片名稱

//以中軸線漸變將圖片隱藏,並瞬間替換img圖片內容

tar.animate({width:'0px'},"fast",function(){tar.attr('src',origin);});

//立即漸變還原圖片width

tar.animate({width:'200px'},"fast");

}

=============

上述代碼用到了jQuery1.8.3 的animate函數

html代碼里的樣式"text-align:center"很關鍵,沒有這個樣式,圖片將會自左向右漸變,加了樣式之後就是按中軸線漸變了


如果還不行就參考這個頁面的代碼:

http://vwfc-dealer.cneln.net/eln3_asp/index.do

2. 滑鼠在圖片上,顯示文字,移開文字隱藏的js代碼

<!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>test</title>
<scriptsrc="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"type="text/javascript"></script>
<script>
$(function(){
$("#div1").hover(function(){
$(this).find("span").show();
},function(){
$(this).find("span").hide();
})
})

</script>
<style>
#div1{width:200px;height:200px;position:relative;border:1pxsolid#ddd;margin:0;}
#div1img{width:200px;height:200px;}
#div1span{position:absolute;top:0;left:0;width:100%;height:100%;display:none;background:rgba(0,0,0,.3);z-index:1;color:#FFF;}
</style>
</head>

<body>
<divid="div1">
<imgsrc="http://img2.niushe.com/upload/201306/26/11-51-25-86-59983.jpg"/>
<span>這里是文字文字</span>
</div>
</body>
</html>

3. js點擊圖片在文本框內顯示文字

親,改一下js代碼,改成這樣就可以了

<scripttype="text/javascript">
tb=document.getElementById('textbox');
spans=document.getElementsByTagName("span");
for(vari=0;i<spans.length;i++)
{
spans[i].index=i;
spans[i].onclick=function()
{
alert(spans[this.index-1].innerHTML);
}
}
</script>

4. js點擊圖片後所點的圖片變成一段文字

<div>
<imgid="img1"src="1.jpg"onclick="Cmd(this,'span1');"/>
<spanid="span1"style="display:none;"onclick="Cmd(this,'img1');">介紹文字</span>
</div>
<script>
functionCmd(v,id){
v.style.display="none";
document.getElementById(id).style.display="";
}
</script>

5. css如何實現滑鼠移至圖片上顯示遮罩層及文字

1.首先看看HTML、一個img圖像控制項和一個帶掩碼樣式的div,其中包含文本。這是蒙版層。

閱讀全文

與js點擊圖片顯示隱藏文字相關的資料

熱點內容
中長短發發型圖片背面 瀏覽:98
列印如何選中圖片 瀏覽:347
美國女孩14圖片 瀏覽:618
ps圖片如何無痕跡改字 瀏覽:63
潮流圖片美女 瀏覽:424
亞絲娜高清圖片 瀏覽:303
地圖魚如何分辨雄雌圖片 瀏覽:722
江淮貨車價格與圖片 瀏覽:965
不撞衫的衣服圖片 瀏覽:774
word圖片表格怎麼隱藏 瀏覽:137
少先隊手抄報圖片簡單又漂亮 瀏覽:853
在word文檔中怎麼設置添加的圖片 瀏覽:515
舒暢牛仔褲圖片大全 瀏覽:407
速派價格及圖片大全 瀏覽:514
word中圖片上打勾 瀏覽:776
一些可以網戀的男生圖片 瀏覽:995
圖片左上角有紅色叉號怎麼辦 瀏覽:101
卡通男生閉左眼的圖片 瀏覽:201
大樹簡單的簡筆畫圖片大全 瀏覽:876
智齒怎麼拔除圖片 瀏覽:676