rollover

Flex - Remove horizontallist rollover color

Hi Community! I'd like to remove the rollovercolor of a horizontallist (my component has a background image). I've tried using a css style sheet by setting the "roll-over-color" property to "transparent"... But I get a black background >_< Could anyone help me with this? Thanks a lot =) Regards, BS_C3 ...

Very simple jQuery rollover

I made a very simple jQuery img rollover function inspired by this one: http://www.smileycat.com/miaow/archives/000224.php. It just check all the imgs that contain _off in their name and swap them with an img with the same name but "_on" instead of "_off". Since I can't use background imgs in my layout, I feel that's an handy solution....

How to do a mouse rollover action on a Label in Xcode?

How do I link up a mouse rollover action on a label, or any invisible object I can place over the label. I can't find it the label's action list Using xcode 3.2 and Interface builder ...

disjointed rollover issues in explorer and safari

I have got a disjointed rollover script from Dax Assist: www . daxassist . com/js/disjointedrollovers.cfm check out the page I'm working on: http://www.gherkin.co.nz/tester/ The rollovers works pretty well on firefox, but in Explorer the larger images show up under the central div, and in Safari, they don't seem to work at all. Any i...

Z-Index and javascript for rollover

I have a container (div) with a background image. In this div there is a menu - a horizontal list. What I need is to insert an image onMouseOver, positioning it absolutely, and showing it behind the text (of course!) AND on top of the div's background image. I also use jQuery, but I think this doesn't matter. The problem can be viewed on...

CSS rollover sprites.

I have used this effect before, everything is in order (As far as I see), but it's just not working. What have I missed? Fiddle here Sprite here Thanks. ...

Actionscript 2.0 mx.managers.CreatePopUp dialog triggers onRollOver for events underneath it

All, On the main stage I have a button that is highlighted on rollover. I am using mx.managers.CreatePopUp to create a dialog box that pops up and takes user information. When the dialog box appears above the button, mousing over the dialog box triggers the highlight for the button beneath it. Can you provide some suggestions as to wha...

Creating Rollover Images in ASP.Net

I have a menu bar of images. What is the best way to create rollover images for the menu bar? I am using Visual Studio 2008 in VB.Net ...

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 a special area without clicking. ...

Javascript knocks out CSS:hover??

Hi im trying to make the Product Categories menu work on this page: http://www.jaybrand.co.uk/p1.html at the moment the page loads and CSS hover works to set the background position so that the graphic behind makes a roll over effect. i put some javascript to set the background position to the roll over on click, but this knocks out t...

Show information over image on rollover

I want to be able to show information (HTML basically) over an image when the mouse rolls over the image... I know there is a .hover() jQuery function but am unsure how to use it to get the desired effect. Ideally when a user hovers over an image it would "grey out" (e.g. layer of 50% opacity black) with some HTML like a title etc etc. ...

Opening a window in javascript (window.open) on rollover without getting blocked by popup blockers

I like to open a new window (not in the same window) in JavaScript with window.open on rollover (without click event) and it gets blocked by popup blocker in IE and Firefox. Is there a workaround for this? ...

Google Maps Rollover Problem in a Flex Website

Hi, I'm using Google Maps in my Flex site to create a map. I've got polygons overlayed on the map. When the user rolls over a polygon an infowindow opens identifying the area and the fill Alpha of the area is set to 0. On roll-out, the info window is removed and the fill Alpha is returned to the default, 0.2. The polygons display and t...

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; } What is the easiest method, preferably CSS only, to hide one and show two when the mouse rolls over the <li> container. If this cannot be done via CSS and only Javascript, I w...

How can I achieve this effect with jQuery or CSS?

Is it possible to switch HTML on click? I have an index page with a large image. Under the image there are four links. When the cursor rolls over a link I would like a small tooltip to appear. If the user clicks the link I want the large image to change and some extra HTML to appear over it (just a small content box). I think I have f...

jQuery plugin Tablesorter 2.0 behaves weird

I downloaded the jQuery plugin Tablesorter 2.0 from http://tablesorter.com/jquery.tablesorter.zip and modified the example-pager.html which is in tablesorter/docs directory I wrote additional Rollover effects: $(function() { $("table") .tablesorter({widthFixed: true, widgets: ['zebra']}) .tablesor...

Problem with JQuery swapImage();

Hello!~ 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 (http://www.adrtimes.squarespace.com), I am loading in the 2 most recent articles that are not categorized as video, and the 2 most recent articles that ...

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"); }, function() { this.src = this.src.replace("_on","_off"); } ); This works great for individual images, but I would like to roll over one...

Multiple or separate rollovers using Jquery. Mock up for a better explanation.

UPDATED: 06.29.10 Here's the code I'm using so far. I'm really close after searching through the Jquery documentation. $(document).ready(function(){ //Rollovers for circle buttons $('img').hover( function(){ this.src = this.src.replace("_org","_over"); }, function(){ this.src = thi...

How to randomise and mimic a rollover in jquery?

Hi, I have a JQuery script which acts as a simple image rollover with a nice fade effect. Here is a test version of the current script in action - http://fi-testing.co.uk/SO/rubix-cube.html As you can see, there are 9 blocks, the client wishes for the rollovers to occur randomly (without a hover) to kind of create a ripple/pulsating e...