overlay

Z-Index div hover overlay issues with [windows] Webkit (Safari, Opera, etc)

Edit: This ONLY occurs on Windows Webkit, does not occur on Macs I am trying to set up a grid with fixed sized cells with a background image. When you hover, the background image and height of cell is changed/increased and overlays the row below it. I tried a few ways to create this idea and came down to that a table with z-index ...

iphone sdk camera overlay animation, how can stop in preview ?

Hi, I've made an animation over the camera and all works fine. I can start the camera, move the image in overlay, and save it as a picture. My problem is that in the "preview" the animation keeps on moving, and I don't know when camera enters in this mode. I don't know how to check a bool or do something that can stop overlay. Is there...

Android: using 9-patch and text for ItemizedOverlay on MapView

In my application I would like to mark different spots on a map. What I'm now wondering is if there's a way to use a simple 9-patch image and add the spot's name as text to it or would I need to draw everything myself (including the text) in the draw() method of ItemizedOverlay? ...

Overlay blocks in a multi-part form

I've a form with three sections, markup looks something like this: div.section1 legend fieldset button.continue div.section2 legend fieldset button.continue div.section3 legend fieldset button.continue I'd like to have a white overlay on section 2 and 3 so they appear as 'disabled' when the user is still on section 1. When ...

JQuery Overlay does not auto close on Flowplayer video end

Hey guys, I am using both Flowplayer and Jquery Tools Overlay. I have my overlay to display when they click a link. The overlay displays correctly and the video auto-starts as it should but when it ends, I was trying to call the overlay's close function to close it out. Here is my div for the overlay. <script> var pla...

Problem making overlay draggable

I have created a script that upon clicking a button displays an overlay which loads an html table by ajax. The problem I'm having is with making the overlay draggable. The first time I click on the button the overlay is displayed and is draggable. However when I close the overlay and click the button again the overlay is displayed but is...

Lightbox2 doesnt like IE8

view my page: http://tonyperson.com/art4art click on the picture (woman study 01) in IE8 and the transparent black background does not go all the way down the page.... any help is appreciated! I have tried many things in css like changing the height to 100% for the overlay div, etc... ...

Blackberry app, how to add an image on top of another image file?

Hello all, I'm trying to develop a small map-like application for blackberry. I need to know how can I position a small image onto another much larger image. The larger image is like a map, I'll need to use the small the image to pin point a specific position on the map. So the smaller image should overlay on top of the larger image....

jquery overlay wrong positioning

I have a div (with class triggers) with the images and that div is in a div with id container. the positioning for the container div is set to relative which causes the overlay to appear in the bottom right corner and when the image is larger it will go outside the screen. how can I fix this? I read this one but that would not be a goo...

Tracking Objects in Videos

Are there any open Source libraries for tracking objects and over-laying graphics in videos ? Specifically, to create effects similar to the products offered in the below link :- http://www.orad.tv/en/page.asp?id=85 ...

Show Polar Axes on top of Filled Contour Plot.

I want to show my polar axes on top of the filled contour plot. Here is my main code. //CODE b=polar([0 2*pi], [0 sqrt((max(X(log1))+5)^2+(max(Y(log2))+5)^2)]); delete(b); hold on; cl = [-6:1:0]; g=contourf(xi,yi,zi,cl); colormap jet; colorbar('YLim', [-7 0],'YTickLabel',{'0','.000001','.00001','.0001','.001','.01','.1','1'}); /...

Javascript floating launch bar

I'm trying to make a just a simple launch bar with a search button that appears in a page when a hotkey is pressed. I'd prefer not having to use a bunch of libraries like mootools or FancyBox(although I'm sure it would make it easier) since this is for a Chrome Extension and I'd like to keep it as small as possible. Any suggestions or s...

How to make underlying div unclickable?

I made overlay div with: position: absolute; top: 0; left: 0; widht: 100%; height: 100%; Basically I want this overlay div to cover my whole page. And it does what I need, but I also need underlying divs to be unclickable. They are indeed unclickable but only in FF, Safari and Chrome. in IE and Opera you can still click buttons that a...

Overlay thumbnail with remove image button?

Hi All i need to create a remove button that appear over my thumbs when a user hover that image with his mouse a link appear like remove from favorites ? anyone know how to achieve this ? an example of what i want is youtube quick list button u find over the videos thumbs .. http://i50.tinypic.com/fxdu2b.jpg Please help me if you kn...

JQuery tools, overflow images from input box

Hi I'm creating an interface with JQuery tools, using the overlay functions. So, I have a list of a tags that shows images in overlay <a id="11" href="data/images/011.jpg"> <a id="12" href="data/images/012.jpg"> <a id="13" href="data/images/013.jpg"> <a id="14" href="data/images/014.jpg"> then I have an input box (without form tag) ...

Issue with showing a progress bar using overlay

Requirement : I have a piece of code similar to the code below. I want to show a progress bar in an overlay after the save button is clicked. Once I get the response from the ajax call, I show an alert displaying that the operation was successful.Issue : The overlay ( progress bar) is visible only after we have got the response from the ...

Widget overlay in Flex

Hi. I would like to make an ImageBrowser into my ImageViewer application. So i thought an Widget overlay is an nice looking! http://bernetblog.ch/wp-content/uploads/2008/03/widget.png is a nice looking. but i don't know what is the best way to do such a thing. How should i start ? Maybe , a Canvas with alpha? ...

Camera preview UI overlay on Android ?

How do I write code which layouts UI elements (Buttons, etc) over camera preview on Android ? ...

Overlaying images from stream in VB.NET

I'd like to overlay a number of images (PNG, same size for all, with transparency). So far, my code is as follows. bg = New Bitmap(My.Resources.blue) g = Graphics.FromImage(bg) overlay = New Bitmap(tree.Image) g.DrawImage(overlay, 0, 0) Now, I would like to overlay one more image, but this is based on a user's input f...

Overlays using streams resizes an image in VB.Net?

Hi everyone As a follow up to this thread I found that the overlay function was working fine. However, it seems that if I use the overlay function while reading an image from a stream, that it would enlarge the picture before overlaying it. ie: overlay = New Bitmap(stream) g.DrawImage(overlay, 0, 0) Seems to enlarge the image befor...