admin管理员组

文章数量:1345179

I am trying to have drop down menu whenever someone hover mouse over an image.

    <div>
        <img id="whoimg" onmouseover="forImg(this)" src="/static/images/whoisitfor.png" height="70" style="cursor:pointer;">
    </div>

    <div style="position: absolute; right:30px; top: 23px;">
        <span style="font-weight: bold;font-size:30px; color: #C4066B;">FOR</span>
    </div>

</div>

I am able to write onmouseover function. But as i am new at web development i don't know what to do next. I have Three images placed horizontally including above one.

function forImg()
{
alert("FOR");
}

I have tried javascript but i am getting no where. Don't know what to do...Please help me

I am trying to have drop down menu whenever someone hover mouse over an image.

    <div>
        <img id="whoimg" onmouseover="forImg(this)" src="/static/images/whoisitfor.png" height="70" style="cursor:pointer;">
    </div>

    <div style="position: absolute; right:30px; top: 23px;">
        <span style="font-weight: bold;font-size:30px; color: #C4066B;">FOR</span>
    </div>

</div>

I am able to write onmouseover function. But as i am new at web development i don't know what to do next. I have Three images placed horizontally including above one.

function forImg()
{
alert("FOR");
}

I have tried javascript but i am getting no where. Don't know what to do...Please help me

Share Improve this question edited May 10, 2013 at 22:33 Anderson Green 31.9k70 gold badges211 silver badges339 bronze badges asked Mar 24, 2013 at 17:06 user2173955user2173955 3
  • How did you include the JS? – aNewStart847 Commented Mar 24, 2013 at 17:08
  • Try onmouseover="alert('It worked!')" – aNewStart847 Commented Mar 24, 2013 at 17:10
  • I have tried onmouseover but the problem is after mouse hover over the image the list must drop down..And i think it requires jquery. If you can help me out ...please... – user2173955 Commented Mar 25, 2013 at 6:32
Add a ment  | 

3 Answers 3

Reset to default 6

You wanted to show dropdown menu on mouseover of an image;

Let this be your menu:

 <div id="nav_menu">
            <ul>
                <li id="l1">AAAAA</li>
                <li>BBBBB</li>
                <li>CCCCC</li>
                <li>DDDDD</li>
            </ul>
   </div>

bind event on your image like this :

$('#whoimg').mouseover( function(){
    $('#nav_menu').slideDown();
});

Demo Fiddle

I would highly suggest using CSS for this. There are plenty of tutorials available if you do some googling... or you could just take the easy way out and use a site like this: http://cssmenumaker./css-drop-down-menu

See it here how it works...i am sure this will help you...don't forget to rate up.

best of luck!


<!DOCTYPE html>
<html>
<head>
<script>
function bigImg(x)
{
x.style.height="64px";
x.style.width="64px";
}

function normalImg(x)
{
x.style.height="32px";
x.style.width="32px";
}
</script>
</head>
<body>

<img onmouseover="bigImg(this)" onmouseout="normalImg(this)" border="0" src="smiley.gif" alt="Smiley" width="32" height="32">

<p>The function bigImg() is triggered when the user moves the mouse pointer over the image.</p>
<p>The function normalImg() is triggered when the mouse pointer is moved out of the image.</p>

</body>
</html>

本文标签: javascriptShow dropdown menu when image is moused overStack Overflow