Tagged Questions
The rollover tag has no wiki summary.
12
votes
3answers
722 views
iPhone Date Picker rolls over to 2010 on December 27th?
So I implemented a UIDatepicker in one of my applications for scheduling and autodialing teleconferences... everything is pretty much ready to go except, while testing I noticed that when the date ...
6
votes
3answers
149 views
Simplest rollover/hover technique
I'm curious to know what people think is the current best way to go about a basic roll-over action- JQuery or CSS?
I want a roll-over with these states:
Normal: paragraphs of text within a DIV
...
5
votes
7answers
11k views
mouseover() mouseout() jQuery add/removeClass problem
I am trying to create a simple mouseover effect using a combination of mouseover, mouseout, addClass, and removeClass. Basically, when the user mouses over an element, I want to apply a different ...
4
votes
3answers
916 views
jquery rollovers and active states
I apologise for any stupid questions/coding, I'm very new to jquery!
I'm trying to create a menu for a one-page site that has rollovers and an active state. HTML:
<ul id="menu">
...
4
votes
5answers
292 views
Best way to code stackoverflow style 'questions' / 'tags' rollover buttons
Whats the best way to implement rollover 'buttons' like Stackoverflow has for 'Questions', 'Tags', 'Users' at the top.
It is actually implemented like this :
<div class="nav">
...
3
votes
5answers
1k views
Hide / show content via CSS:hover (or JS if need be)
I have the following html:
<li>
<span class="one">Stuff here</span>
<span class="two">More stuff</span>
</li>
.one { display: block; }
.two { display: none; }
...
2
votes
1answer
227 views
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 ...
2
votes
3answers
110 views
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 ...
2
votes
4answers
95 views
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 ...
2
votes
1answer
63 views
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 ...
2
votes
3answers
162 views
A better implementation of a fading image swap with javascript / jQuery
This is less of a specific problem or error but more of a implementation question.
First of I'd like to say that I've been through a lot of fading image tutorials and I have a basic understanding of ...
2
votes
5answers
200 views
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 ...
2
votes
1answer
131 views
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) ...
2
votes
9answers
275 views
Best way to do image rollovers?
I want my main logo to change when mousing over.
I understand there are several ways to achieve this, and was wondering what's the best way for stability, browser compatibility, efficiency - and ease ...
2
votes
2answers
732 views
jQuery: using hover to roll-over multiple images at once
I have a small problem, but I'm a bit stumped.
I am using the following code to do rollovers on my webpage
$("#mylink1 img").hover(
function()
{
this.src = this.src.replace("_off","_on");
},
...
2
votes
2answers
566 views
Problem with JQuery swapImage();
~ On my articles page (http://www.adrtimes.squarespace.com/articles) I have each entry start with an image that changes on rollover. This is working fine.
However, on my homepage ...
2
votes
3answers
275 views
mouse rollover event in Python (VPython)
Is there something similar to scene.mouse.getclick in the visual module (VPython)?
I need it for a rollover.
Thanks in advance.
EDIT: I need a function for doing something when the mouse moves inside ...
2
votes
3answers
3k views
Disable roll-over color for List or DataGrid components
I want to get rid of the typical Flex roll-over color in list-based components, and to display my own style of roll-over rendering.
Setting useRollOver to 'false' is not an option, since disabling ...
2
votes
6answers
1k views
Gradually changing color
How does the logo in the top left corner of the screen gradually change color as a rollover? I think its done in jquery. If you don't know the code can you point me to a tutorial that can? Thanks.
...
2
votes
2answers
1k views
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 ...
2
votes
1answer
1k views
Jquery Image Switch
I am using an image switch function in Jquery for a site I am building. There are a ton of projects so I am heavily compressing a lot of these images. Some of them however dont look nice as .gifs and ...
2
votes
3answers
1k views
Tab style nav bar with Jquery
Hi I have been trying to find an answer to this question. I am trying to create a nav bar using jquery that uses rollovers. So there is an On state, off state, clicked state for three diffrent ...
2
votes
3answers
1k views
jQuery Rollovers Not Preloading
$('.ro').hover(
function(){
t = $(this);
t.attr('src',t.attr('src').replace(/([^.]*)\.(.*)/, "$1_o.$2"));
},
function(){
t = $(this);
...
2
votes
3answers
284 views
Javascript error in IE (rollover)
i have some javascript roll over code that works fine in firefox but when i try it in IE i get this error:
Message: 'document[...]' is null or not an object
Line: 25
Char: 13
Code: 0
URI: ...
2
votes
3answers
2k views
Jquery - How do I fix this Image Rollover?
Hi Guys I have this little Jquery script: link text
$(document).ready(function()
{
$('#image p').hide();
$('img').hover(function()
{
$('#image p').show(200);
}, ...
2
votes
7answers
2k views
Rollover safe timer (tick) comparisons
I have a counter in hardware that I can observe for timing considerations. It counts miliseconds and is stored in a 16 bit unsigned value. How do I safely check if a timer value has passed a certain ...
1
vote
2answers
46 views
Does Stopwatch.Gettimestamp ever roll over? Or roll back?
In using Stopwatch.GetTimestamp() we find that if you record the return value and then continue calling it and comparing to the previous return value, it will eventually but unpredictably return a ...
1
vote
1answer
86 views
How do I make a custom Facebook Share button?
OK, so I've got a Facebook page set up for my site, and some nice JS rollovers for my site; all I need to do now, is to have these buttons execute the "Share" script. That is to say, when someone ...
1
vote
1answer
131 views
html / javascript - desaturate / grayscale image rollovers without creating an image duplicate or sprite
I want to do a grayscale to color image rollover on my images, but I don't want to use a technique that requires creating a duplicate of the image, and I want to avoid sprites. Is this possible? How ...
1
vote
1answer
68 views
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 ...
1
vote
1answer
32 views
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 ...
1
vote
1answer
136 views
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 ...
1
vote
2answers
100 views
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 ...
1
vote
3answers
44 views
*[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 ...
1
vote
1answer
204 views
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 ...
1
vote
1answer
152 views
TLF text is preventing onMouseOver event
Basically I have some TLF text as a symbol, it's read only, the font is embedded and I set mouseEnabled to false. It's sitting as a graphic, on top of a button. When I mouse over the text, or the area ...
1
vote
1answer
127 views
Making two adjacent div's rollover together if you hover over either div
I have created a DIV with two DIV's inside it; A DIV with a rollover image and A DIV below it with text and normal rollover behaviors.
They text describes the image and they are both links to the ...
1
vote
1answer
323 views
java jbutton change rollover border color
When you roll over a Jbutton there's a greyish border that comes up to show the rollover effect. Is there a simple way to change the color of that border say to red?
1
vote
1answer
330 views
CSS button hover issues between Firefox and Chrome using image sprite
The rollover uses a single image for both the regular and hover states. The buttons display fine in both Firefox and Chrome, but the rollover does not work in Firefox.
Here's the HTML, which uses a ...
1
vote
2answers
491 views
Flex itemrenderer disable rollover but keep alternating colors
Is there a way to customize the rollover and selected colors of an item renderer without losing the alternating background colors?
When i set the autoDrawBackground flag to false the roll over ...
1
vote
2answers
123 views
Flex Air RollOver on inactive Native Window
I have a Native Window in Flex AIR. Let's say the window doesn't have a focus. It is inactive. Is it possible to find out when mouse is over such window? The window is always in front. I heard that it ...
1
vote
0answers
293 views
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 ...
1
vote
3answers
55 views
Need help with Image Buttons
<a href="#"
onmouseout="MM_swapImgRestore()"
onmouseover="MM_swapImage('Home','','Images/menuButtons/home_out.png',1)"
onclick="alert("Hello")" ><img onclick="alert("Hello")"
...
1
vote
1answer
574 views
Text link to show an image on hover
I am trying to get a link when hovered to show an image just to the left of the link. I have achieved almost what I want minus I am having an html issue.
Trying to get my redtext class to show up on ...
1
vote
1answer
322 views
IE7 rollover not working
I have some code which is working fine in IE8, FF & Safari on a PC, but not in IE7. The idea is to have a large button, with a background image in the tag, and text & a foreground image. When ...
1
vote
1answer
523 views
flex Spark Tab bar rollover index
I am using a the spark tabbar and gave a view stack as dataprovider.....in the view stack there are n elements ...and each element has a panel....
my code would be some thing like this....
...
1
vote
2answers
435 views
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. ...
1
vote
1answer
186 views
Rollover image hides the element below from mouse. How to fix?
Here is an example I've put together to better illustrate this problem:
http://www.saeidmohadjer.com/users/saeid/sandbox/javascript/image_map_rollover/test3/test3.html
When you go from image A area ...
1
vote
1answer
408 views
jQuery Quicksand + Captify (Rollover Script)
so I have a little issue with my jQuery Captify (Caption on image rollovers) and Quicksand (Image filtering system) not working so well together. When the page loads, my Captify works well when I roll ...
1
vote
1answer
284 views
Javascript rollover effect
Im trying to achieve a rollover effect similar to what is used here: http://www.blackboxpress.co.uk/
You will notice rolling over the images displays further information.
Would you know of any good ...