i wrote the text which on mouseover it will make that changing is in lines 9, 17
Eddie1987
Posts
-
Changing Table's Image [modified] -
Changing Table's Image [modified]I want that when i will enter the TextA i will see on the third table pic b (Winter) and when i will enter TextB i will see on the third table pic c (Sunset) Please help !!! <%--When mouse will be over the text then i want the third table will show pic (Winter)--%>
ChangeToPicA -> The Text
<%--When mouse will be over the text then i want the third table will show pic (Sunset)--%>
ChangeToPicB -> The Text
<%--The third table which need to change the pictures--%>
JScript2.js function showPic(id) { document.getElementById("Sunset").className = "c"; document.getElementById("Winter").className = "b"; document.getElementById(id).className = "picshow"; } stylesheet.css .c { background-image: url('Sunset.jpg'); background-repeat:no-repeat; } .b { background-image: url('Winter.jpg'); background-repeat:no-repeat; } .pichide { display: none; } .picshow { display: block; border: 1px; } -- Modified Monday, August 1, 2011 9:18 AM
-
How to replace image onmouseoverI have JScript1.js not JQury I using Visual Basic 2008 Please help thank's
-
How to replace image onmouseoverHey I want to change a image that is in one td when my mouse moving over a onther element like (text, another td, tr, table) example : // the image that needed to be switch with another image
TEXT
// here i want to creat a mouseover/out option please help thank's
-
reduce of picture to fit panel sizeI'm making a project in c# that looks like Paint.Net i hace a panel in the middel of the form (form size=900,500 panel size=800,400) when i load a bigger picture like 801,401 and above i don't want to increase the panel size instead i want to reduce the pic's pixel so that will fit into the original panel size. can someone help me with that ? :doh: