|
|
|
จะเปลี่ยนส่วนนี้ออก <im src=" เปลี่่ยนเป็นเรียกจาก <div class="> แทนเพื่อใส่ภาพ :hover ได้ ต้องแก้ไขอย่างไร +PHP |
|
|
|
|
|
|
|
ตาลาย
ผมไม่เคยเปลี่ยนภาพโดยใช้ :hover กับ tag อื่นนอกจาก a เพราะไม่แน่ใจว่า ถ้าเอาเมาส์ออกแล้วภาพจะกลับไปหรือไม่
ถ้าเป็นผมจะใช้ js ครับ เช่น
$('#divxx').hover(
function(){$(this).css('background', 'aaa.gif');},
function(){$(this).css('background', 'bbb.gif');}
);
อีกอย่างบราวเซอร์บางตัว หรือรุ่่นเก่า ใช้ :event กับแทคอื่นไม่ได้นะ
|
ประวัติการแก้ไข 2013-08-22 01:38:57
|
|
|
|
Date :
2013-08-22 01:37:41 |
By :
pjgunner.com |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript">
$(function(){
$("#testimg").mouseenter(function(){
$(this).attr("src","1.jpg");
}).mouseleave(function(){
$(this).attr("src","2.png");
});
});
</script>
<img src="2.png" border="0" width="24" height="104" alt="2.png (7,181 bytes)" id="testimg">
หวังว่าจะมีประโยชน์นะครับ
|
|
|
|
|
Date :
2013-08-22 12:01:09 |
By :
zoceferatu |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (JavaScript)
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
Code (PHP)
<a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image1', '', 'im_on.gif', 1)">
<img src="im_off.gif" alt="free" name="Image1" border="0"/>
</a>
// ไม่รู้ตรงรึป่าวนะ
|
|
|
|
|
Date :
2013-08-22 13:39:46 |
By :
teez1232002 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำได้เองล่ะครับ แค่เปลี่ยน <img src=" เป็น <div class" แล้วให้เรียกจากชื่อ im_on.gif กับ im_off.gif เปลี่ยนสัดส่วนต่างๆเป็นชื่อคลาสแทน
|
ประวัติการแก้ไข 2013-08-22 15:21:42
|
|
|
|
Date :
2013-08-22 15:20:21 |
By :
Meen2007 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|