|
|||||||
| General Discussion and support for your general issues associated with web design. |
![]() |
|
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
||||
|
||||
|
Roll-over effect request
I have a special request.
I'm looking to have a <div>. In it: -- a single picture at the top, centered -- below text What I would like to have a a roll-over effect where you hover over text, and that centered picture changes. I want to display a lot of logo designs that I have. Maybe, instead of that, have miniture pictures (thumbnails) instead of text and the same thing happen. I'm not sure what kind of code I should use. And from there, I'm not sure how I should go about it. Anyone have ideas for this? Or better, code that I could look at to try out?
__________________
I.T. Ohio. Personal Computer Consultant for Ohio, USA. |
|
#2
|
||||
|
||||
|
Adapt this script.
Code:
<script type="text/javascript">
function change() {
var num = Math.round(Math.random() * 2);
if(num == 0)
document.getElementById("logo").src = "images/index/logo-grimtoaster.jpg";
else if(num == 1)
document.getElementById("logo").src = "images/index/logo-tophat.jpg";
else if(num == 2)
document.getElementById("logo").src = "images/index/logo-shoes.jpg";
}
function unchange() {
document.getElementById('logo').src = 'images/index/logo-normal.jpg'
}
</script>
<img class="logo" id="logo" src="images/index/logo-normal.jpg" alt="Terry & Shoes"
onmouseover="change();" onmouseout="unchange();" />
__________________
Disclaimer. (1) Whilst I will help you sometimes, if I feel like it, and my advice in relation to your actual question will be of good quality: my posts are to be taken with a pinch of salt. I will be sarcastic, deploy irony and include obscure cultural references for my own amusement without warning. (2) You will gain nothing from complaining, and if you try to argue with me then you will not win. No matter how noble your battle seems, I am still better than you, don't be an hero. |
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|