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
3
votes
2 answers

CSS Dropdown Menu overflow problems

I have a blog http://fraldasdamaria.blogspot.pt/ and I would like to put the submenus apearing in a rollover mode. I can put the subsubmenu working properly; but when I put the condition overflow:hidden on the submenu, the subsubmenu disapear. Can…
3
votes
3 answers

Preload Mouseover Images in Rails

I currently have a rollover button implemented in rails as follows: <%= image_tag("header/home_but.gif", :mouseover => "header/home_over.gif") %> How can I preload/cache the mouseover image (home_over.gif) so there is no delay when the user moves…
Chris C
  • 373
  • 7
  • 17
3
votes
1 answer

NLOG Rollover Configuration

Is there a configuration in NLOG that accomplishes the following 1)A new log file should be created , when the current file exceeds a particular size for ex:- 5 MB 2)The old log files should be deleted after a configured amount of time period like…
Sabarish Sathasivan
  • 1,196
  • 2
  • 19
  • 42
3
votes
2 answers

jQuery Rollovers Not Preloading

$('.ro').hover( function(){ t = $(this); t.attr('src',t.attr('src').replace(/([^.]*)\.(.*)/, "$1_o.$2")); }, function(){ t = $(this); t.attr('src',t.attr('src').replace('_o','')); } ); I use this…
zuk1
  • 18,009
  • 21
  • 59
  • 63
2
votes
1 answer

flash AS3 custom button rollover (windows 7 style)

NOTE: I chose to keep the history of the topic cause I think the searching process might be usefull to someone. If you want the solution go to the bottom of my post. I searched but I didnt find my answer either on Google and StackOverflow (not even…
TheFrenchGuy
  • 233
  • 1
  • 3
  • 14
2
votes
3 answers

how is the popup displayed on rollover of a thumbnail image designed? Javascript, CSS

I'm building a photogallery, and as per the requirement, when the mouse rolls over the thumbnail image, a little enlarged version of the thumbnail with details like title of the actual image, size etc.. needs to be displayed on the enlarged image.…
arun nair
  • 3,643
  • 14
  • 41
  • 49
2
votes
4 answers

jQuery rollover menu without images

I'm stuck with a seemingly simple rollover task. Black is the default state, blue the hover state. As you can see, in the default state only the latter digits show, at hover, the 20 has to be added (no problem), the colour changed (no problem) and…
markus
  • 40,136
  • 23
  • 97
  • 142
2
votes
1 answer

CSS rollover - hover problems?

I'm having some trouble with a rollover.. hoping you can help me! I'm using li navigation, and I want to have separate boxes linking to different pages. This part is fine and works like it should. I want to be able to hover over the box and have the…
rossautomatica
  • 459
  • 4
  • 9
  • 25
2
votes
1 answer

Create new STDOUT or STDERR log when size hit 20MB size?

I am using Tomcat 8 to run application in Window 10 (Run as window service). I would like to confirm how should I avoid the STDOUT or STDERR log file to be too big by any of two approach below: Create new STDOUT or STDERR log when size hit 20MB…
SRI PRIYA
  • 21
  • 1
2
votes
0 answers

How to manage Elastic mapping changes with ILM rollovers?

We have some Elastic rollover indices managed by ILM. Mappings are defined in templates. When we try to add mappings fields concepts collide: The obvious way is (1) update the template and (2) provoke a rollover so the new index has the new mapping.…
Lars P
  • 796
  • 6
  • 16
2
votes
5 answers

How do I center text on top of an image in both dimensions?

Thank you all for your prompt feedback, it has been very helpful. One issue remains: Neither line-height, nor padding seem to be able to center both text that is long enough to wrap around and text that fits neatly on one line in the middle of the…
Alex Wood
  • 821
  • 3
  • 12
  • 27
2
votes
0 answers

A link inside TextFlow: rollOver/rollOut bubbles, shouldn't bubble, and cannot be avoided

I'm having a weird behavior. I have an HTML link inside a TextFlow. When I set its linkHoverFormat, it starts sending rollOver/rollOut events up the chain. These events say the don't bubble but somehow they do. And I can't seem to stop them from…
nununo
  • 223
  • 2
  • 11
2
votes
1 answer

Preventing 1px line on right of images on iphone when using css background images for rollovers (by changing position)?

I have got rollover images setup on a site i'm building using css background images like so: .rollover a { display: block; width: 400px; height: 400px; background: transparent url(hover.jpg) no-repeat; } .rollover a:hover { background-position:…
deshg
  • 1,233
  • 4
  • 27
  • 45
2
votes
1 answer

How can I roll over Tomcat 5.5 stderr and stdout files when they get too large/big?

I have been trying to figure out a way to take the Tomcat 5.5 stderr and stdout log files and roll them over when they get too large, but I have been unable to do so. Now, please understand this is NOT for web app logging. This is just the stdout…
user717236
  • 4,959
  • 19
  • 66
  • 102
2
votes
2 answers

JQuery replace src attribute substring

I'd like to replace the 2's with 1's for the image src in all matching classes. I've tried something similar for specific elements and thats works, but I can't get it to work for all matching classes. How do I change the format of the first call so…
usertest
  • 27,132
  • 30
  • 72
  • 94
1 2
3
30 31