opacity

jQuery slider control for opacity

I'm trying to implement a jQuery slider control for opacity of a certain element on my web page. Kind of like this question but with a slider. I was wondering how I should implement this best, as I'm a little lost as how I should get started... I'm guessing a function wouldn't be the best, would it? Defining a function and then calli...

Silverlight child window OverlayOpacity

I have child window and I want the overlay opactiy to be 0.1 I set this in the XAML. OverlayOpacity=".1" However when the modal is launched the background gets very dark for about a second and then goes the the overlayopacity setting I have coded in. Is their a way to make is go straight to the .1 opactiy without getting dark first. ...

CSS: IE: Version of style "background-color:rgba(...)"

I have a requirement to have a div with a background image, and overtop that image should be a 0.7-opacity black layer. For this, I'm using: background-color:rgba(0, 0, 0, 0.7); background-image:url(/Images/hash-000000-pattern.gif); This works perfectly in everything but IE. In IE 6, 7, and 8, the background-color:rgba(0, 0, 0, 0.7);...

Changing div opacity excluding some of the div contents - jQuery

I have several .box div including short text (<p>) and a thumbnail. I'm trying to change opacity of text within a .box div when any part of the .box is hovered, but I don't want the image affected. So far I've got this: jQuery(document).ready(function(){ $(".box").fadeTo("fast", 0.6); $(".box").hover(function(){ $(this).fadeTo("fast", ...

FadeIn javascript function in Safari not working but FadeOut works :(

So I've made custom function for a game I'm working on, one being fade in the other one fade out. The problem is fadeOut works, but fading back IN does not... strange. Any clues? See code below. THIS WORKS: fadeOut:function(o,duration) { o.style.opacity = 1; o._anim = function() { if(o.style.opacity <=0) ...

liveQuery not reloading DOM until a second after pageload together with .load which causes a short visual error

This is a small issue which started to appear in most browsers (as far as I know) after I added the liveQuery library together with the jQuery .load function. LiveQuery is working just fine but since I have a opcaity effect on my portfolio that upon pageload lowers the opacity down to 0.6 on my thumbs via the following code; // LiveQue...

Apply opaque overlay to control

Hi, I have a control data template. The viewmodel behind it has a property IsReadyForUse. When this property is false, i want a semi transparent overlay on the control. This overlay must prevent the user from editing any of the items on the control. Once the property goes back to True, the overlay should dissappear. If someone could p...

CSS gray text opacity and Firefox problem - color issue

I'm using following jQuery function to change the opacity of text (it's color: #999999) $('.small_buttons').css('opacity', 0.3); The effect looks good in Chrome or even Internet Explorer 8, but in current version of Firefox (3.6.10) this text gets really strange greenish colour, instead of nice pale gray. Screenshots: Chrome: http:...

Delphi 6 : How to create a Bitmap with TextOut that has an Alpha channel?

I'll describe my overall goal in case the question I asked isn't in the best form to get the answer I'm looking for. I have a sphere of words or "word ball" that spins around the X axis. As words spin to the back (Z coordinate goes from -1 to 1, front to back), I intend to change the size and the opacity of each word so that words in "...

JavaScript opacity Anti-aliasing bug in Internet Explorer

I have encountered an annoying bug with internet explorer on a javascript animation I made. I have a greyscale image of a city skyline which fades its opacity to 0, revealing a full-color skyline. It looks great in all other browsers, but IE reveals artifacts. (around the taxis, and the barr+barr text). A friend told me this is because...

how to give opacity on area map

Hi to all, i am having a problem with html opacity .. currently i have applied opacity using css but its not working my html and css code is below.. <area shape ="rect" class="transbox" coords ="0,0,30,22" href ="test1.htm" target ="_blank" opacity="0.5" /> area{ opacity: 0.6; -ms-filter:"progid:DXImageTransform.Microsoft.Alph...

Problem with PNG transparent + Opacity on ie7 and ie8

Hello everybody, I am developing a project that uses the PNG transparent and Opacity but, the area has a surplus in IE7 and IE8 instead of being transparent, it is black, can someone help me? print of area [http://unistudio.com.br/clientes/transparent.jpg] Thanks ...

Set drawable opacity

How can i set the opacity of a Drawable object? ...

Achieving white opacity effect in html/css

Hello, is there a way to achieve this effect in a cross-browser compatible way without having to prepare separated images? Basically the frame on which text lays has a white overlay of 50% opacity.. I would like a solution that doesn't involve creating any other image in addition to the background but I don't know if it's possible! ...

jQuery Masonry and opacity in IE

Hi, I have found that if I am using jQuery masonry and also use jQuery to set the opacity of something, the opacity does not work in IE. The funny thing is that I have a div set to fadeIn, which also has an opacity value. The div IS translucent when fading in IE, but as soon as the fade has finished it just becomes solid. This is very s...

Change window opacity when opening a form

I'm trying to change a Form's opacity automatically before loading. I am using built in Settings function to save the value what opacity the window should have. The problem is, when I'm debugging my application, it all works well, when I compile it and try to open the executable, the window just dissapears... I don't get any errors. Thi...

Top Portion of Site Disappears in IE7

I am working on a site and the header element is completely disappearing in only IE7 (it shows in IE6 and IE8). It shows for a second, then once the whole page is loaded, it disappears. I have no idea what could be causing this. The portion disappearing is the section I have included via PHP, but it still doesn't show when I actually ins...

How can I make the CSS opacity property work with png images in IE6?

This code works with IE 7 and above, but not with IE6: img.myclass{ opacity: 0.5; filter: alpha(opacity=50); } What should I add to my code? Thanks ...

JQuery animation in IE 8

I am making an animated opening for a site, no flash, very simple, animation of opacity fade up of background layer, then logo grows out of image into position, then I show (slide in) the remaining divs. For some crazy reason, I have been unable to get this to work in IE 8. Works fine in Chrome and FF on Mac and PC. I haven't tested in ...

Check if opacity is set

Hi there. I have a script that animates opacity but if the opacity has not been previously set then it just disappears. I just wondered if there was a way to check if the opacity has been set. Thanks in advance! ...