Questions tagged [rollover]

rollover image is an image that changes to some other image when you or your customer rolls the mouse over it

451 questions
1
vote
1 answer

how to elegantly use css sprites in an inline element?

I'm aware of this hack for inline-block property, but as it really is a hack for the poor browser support, I was wondering if there is a more elegant solution to use CSS sprites without the necessary line-break of block elements. To illustrate the…
alexbrunner
  • 17
  • 1
  • 10
1
vote
2 answers

Find the word the mouse is over for Text component (Flex/Actionscript)

Is it possible (if so how) to find out what word the cursor/mouse is over when it is moving over a < mx:Text > component? So for example as the user moves the mouse along a sentence (inside text component), each word will highlight as they go (I…
kenneth
  • 1,055
  • 1
  • 8
  • 15
1
vote
1 answer

How can I fade in a DIV with jQuery on rollover?

I've tried lots of code that I have found on this site, but none of it seems to work. I'm not very knowledgable on HTML and jQuery, so it's probably something really simple that I am doing wrong. Here is some sample code:
Matt
  • 105
  • 1
  • 4
  • 8
1
vote
1 answer

How to make an image appear on text rollover over on the original webpage

I'm trying to create a neat interface where it's a list of text and an image of the item would appear below the text when hovering. I've seen many examples of images appearing over the mouse, but I really want the image to appear on the actual…
aaron_m12345
  • 113
  • 3
  • 12
1
vote
2 answers

Quick and easy jquery li/div change

just wondering if someone can help me make this code work properly and be used for multipul li's without declaring each one separately. Is this possible? Basically want to do an background image rollover with the < li > then when hovering over the <…
Bennjamin_
  • 99
  • 2
  • 12
1
vote
1 answer

Unable to name log file with custom timestamp format using TimedRotatingFileHandler

Is it possible to create log files with custom date format, using TimedRotatingFileHandler? import logging from logging.handlers import TimedRotatingFileHandler import os from datetime import datetime import time logger =…
1
vote
8 answers

Elapsed Time with Environment.TickCount() - Avoiding the wrap

Does the absolute value protect the following code from the Environment.TickCount wrap? If Math.Abs((Environment.TickCount And Int32.MaxValue) - StartTime) >= Interval Then StartTime = Environment.TickCount And Int32.MaxValue ' set up next…
user79755
  • 2,623
  • 5
  • 30
  • 36
1
vote
1 answer

The rollover of a specific menu item is not showing the hidden sub menu

I created some classes for the menu items, so I can call upon them. .dropdownBox { display: none; } .dropdown li:hover > ul.dropdownBox { display: block; } However, the roll over state for 'Work' that has…
1
vote
3 answers

*[id^= Selects all, I'd like to select each same number

With this code, when you hover over anything with the id="trigger*", it shows everything with the id="panel*" I would like it, for trigger1 to show panel1, for trigger2 to show panel2. Is that possible? This is my…
Chezzo
  • 11
  • 1
  • 3
1
vote
1 answer

Combining a jquery image switch & a roll-over caption script

I am trying to hack together (1) an image switch menu (roll over an item on the menu, have an image show up elsewhere on the page) with (2) a caption roll over (roll over the image, have caption expand to show longer text). The caption roll-over is…
Ila
  • 3,528
  • 8
  • 48
  • 76
1
vote
1 answer

Log4j not rolling over with latest version log4j-2.17.2

I have a log4j configuration that's intended to roll files once daily. It is working fine with the log4j-2.17.0 and 2.17.1. When I update to the latest version 2.17.2, the daily logs stop rolling over. Here is my…
1
vote
1 answer

Automated rollover for index in elasticsearch

I need an index, which continuously gets data loaded into Elasticsearch (7.15) via Logstash, the problem is that over time the index will be full and due performance reasons and sheer size it will be preferable to split the index into smaller…
M. A. Tanaka
  • 167
  • 1
  • 2
  • 13
1
vote
1 answer

One image overlay to have multiple colours depending on the categories of post in wordpress

I am using wordpress to build a portfolio website. I am currently showing the featured image of my post on the main blog and have a coloured overlay when rolling over/hovering the image, that changes according to the category the post is in.…
elbe
  • 11
  • 2
1
vote
1 answer

how can I modify tabpanel color on mouse over

enter image description here currently applied color is lightblue Now, As i used below configure,layout property of tabposition, Change color source may be included in it's sources tabpanelStyle = ttk.Style() #…
1
vote
3 answers

Animate onRollover onRollout with TweenMax

I'm using TweenMax to animate some arrows to move when I roll over a link, and the animate back, when I roll out. But it's not working, it animates on rollover, but not rollout. function boxLink(mc_function:MovieClip, mc_target:MovieClip)…
Sindre Sorhus
  • 62,972
  • 39
  • 168
  • 232