Questions tagged [mouseover]

A mouseover is an event that occurs on an element when the user moves the cursor over that element

A mouseover refers to a GUI event that is raised when the user moves the cursor over a particular area of the GUI. It can also be referred to as "hovering" over the element. It is usually followed by the similar but opposite mouseout event, in which the user removes the cursor from over the element.

2468 questions
0
votes
1 answer

Use of .on("mouseover", ...) in d3.js

I'm getting introduced to javascript and I'm trying to use .on("mouseovert", ...) in order to get the x-value of my graph when the cursor is upon the graph. My code look like this: // do something as mouseover the graph svg.select("svg") …
Wakhaus
  • 21
  • 1
0
votes
3 answers

make qtip disappear right away

so I want the following behavior out of qtip: the qtip should show up when I click on the object (I got this working without problem)...but then I want to have it disappear after a few miliseconds without me having to do anything....how would you go…
kamikaze_pilot
  • 14,304
  • 35
  • 111
  • 171
0
votes
1 answer

Trying to make a slide in out animation of my codes that I have done in CSS but failed

I am trying to do an animation where the user drags the cursor on the button, it slide out and when the user drag out of the button, it slide in. I have made another code on another link below, is able to but trying to do it on my full codes by me…
Meo Dows
  • 33
  • 8
0
votes
1 answer

Mouse over on button, another div or HTML tag will side out to the left of the button

Hi I have a problem trying to getting the animation at the left hand side of the button when user mouse over the button. One of the example that explain as below: HTML:
Follow me...
Meo Dows
  • 33
  • 8
0
votes
3 answers

Cufon mouse-over

I have some HTML like this:
LOCATE STORES
I use this code for Cufon: Cufon.replace('div.button2', { fontFamily: 'Bliss2H', hover: true,…
Martin
  • 2,302
  • 2
  • 30
  • 42
0
votes
2 answers

Javascript on all table data

I am using the following Javscript to change table data element ID on mouse over so that I can apply different CSS on the mouse action. It is working fine, but only on the first row of my table. Does anyone know how I can amend the script so that it…
cr1
  • 199
  • 2
  • 16
0
votes
2 answers

jQuery mouseover / mouseout show/hide div

The blue square, shown in the picture, is buttonShowHidePicture (a button) and the red square is currentPictures (a div). Desired functionality: when I move the mouse over the button I want the div to appear, then I want to be able to move the…
devamat
  • 2,293
  • 6
  • 27
  • 50
0
votes
1 answer

Scripts crashing each other

well my problem is hopefully easy: 3 actions that shall happen while hovering a photo. The timer at the bottom works now, the other things crashed. A Page shall open in 5 seconds and the photo shall move out of the display before. Sounds easy,…
Tassilo
  • 7
  • 3
0
votes
1 answer

jQuery setInterval on mouseover

I have a problem that i will not be able to solve by myself. I want to show a countdown timer once they hover over a photo. It works the first time you hover. If you move the mouse and hover again it will just be weird numbers jumping. I hope…
Tassilo
  • 7
  • 3
0
votes
1 answer

Creating multiple mouseovers at once

I want to post an old book on my wordpress website but since the book is so old there are a lot of words that readers may find unfamiliar. So I was thinking of adding a mouseover with the definition when they hover over a certain unfamiliar word.…
Artus
  • 165
  • 1
  • 2
  • 7
0
votes
0 answers

Unable to click on submenu which is appeared from mousehover

I have tried below ways but no luck Attempt 1 : WebElement profile = dr.findElement(By.xpath("//ul[@id='wp-admin-bar-top-secondary']//a[@title='My Account']")); WebElement logout =…
Sandeep
  • 1
  • 1
0
votes
1 answer

News Ticker MouseOver Issue

I am having an issue with JavaScript. I am trying to make a news widget that scrolls but will stop on mouseover for reading purposes. What happens to me at the moment is it pauses on first mouseover. Then when mouseleave runs, it starts again but…
0
votes
1 answer

Hover over a dot for a popup image

I recently downloaded a template code from amcharts.com so that I could put a map on my website. The code puts little pulsating dots on whatever location I set the latitude and longitude, and I can also include a title for each dot. However whenever…
Zoey Best
  • 3
  • 2
0
votes
3 answers

JavaScript mouseover and mouseleave event

I have a mouseover and mouseleave event listener on the same elements, when you mouseover it adds a class and mouseleave removes the class. I am running a forEach so that when you mouseover a specific item it shows a specific block of text for that…
KD1
  • 107
  • 1
  • 15
0
votes
1 answer

Need help inserting a background image within a

So currently, my website's front page has 9 interactive boxes that change color when hovered over. What I want to do is put background images into each of these boxes (and hopefully each image can scale to the size of the box). Ultimately, I want…
wbhyatt
  • 43
  • 2
  • 5
  • 12
1 2 3
99
100