Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

66
votes
8answers
15k views

IE9 Border-radius and Background Gradient Bleeding

I've seen a lot of info about being able to use rounded corners in ie9 using the CSS3 standard definition of border-radius. Kudos to ie9 for joining the party :) but lets not get to excited. What ...
17
votes
3answers
11k views

Custom ImageView with drop shadow

Okay, I've been reading and searching around, and am now banging my head against the wall trying to figure this out. Here's what I have so far: package com.pockdroid.sandbox; import ...
7
votes
2answers
9k views

Android Drop Shadow on View

I have done some extensive searching for code examples on this but cannot find anything. In particular, I am looking to add a shadow to a png drawable I am using in an ImageView. This png drawable ...
7
votes
4answers
18k views

UIView with rounded rectangle and drop shadow: shadow appears above rectangle

I've got a uiview subclass where I'm trying to draw a rounded rectangle with a drop shadow. Though it draws both elements, I can see shadow through the rounded rectangle fill. I'm new to CG so I'm ...
6
votes
4answers
377 views

How can I add a drop-shadow to an image using PHP?

I am looking for a way to add a drop shadow to an image using PHP. Before you answer or vote to close: I am not looking to do this using CSS or HTML. I want to generate an image file. This is not a ...
6
votes
3answers
2k views

DropShadow for WPF Borderless Window

I have a WPF Window with WindowStyle set to none. Is there some way I can force this window to drop a shadow (like the one you get when WindowStyle is not none)? I don't want to set AllowTransparency ...
6
votes
4answers
4k views

Draw a rounded UIView with gradient and drop shadow

EDIT: I finally found a real simple solution to this problem, using the CAGradientLayer class, and the CALayer drawing functionalities. Ole Begemann released a great UIView wrapper for ...
5
votes
1answer
4k views

Adding a drop shadow to NSString text in a drawRect: method without using UILabel

I'd like to add a drop shadow to text drawn using the iOS supplied NSString (UIStringDrawing) category method: - (CGSize)drawAtPoint:(CGPoint)point forWidth:(CGFloat)width withFont:(UIFont *)font ...
4
votes
2answers
174 views

CSS Speech Bubble with Box Shadow

Creating a DIV that uses CSS to draw a triangle to the left. Trying to apply a uniform box-shadow to both parent and the pseudo element (see images) and code. Is this possible? Or am I better off ...
4
votes
1answer
8k views

WPF drop shadow

Currently I'm making something in WPF that has a border that contains a grid and other controls. The problem I'm facing is that whenever I set the Border.Effect property to a drop shadow effect every ...
4
votes
4answers
694 views

HTML/CSS: How does Google create this drop shadow over their maps?

Question: How does Google create the dropshadow next to the vertical scrollbar over the Google Map? This is a screenshot depicting exactly what I'm talking about. This seems to be regardless of ...
4
votes
3answers
2k views

Win32: How to make drop shadow honor non-rectangular Layered window?

i've created a layered window by adding the the WS_EX_LAYERED extended style: wndClass.ExStyle = wndClass.ExStyle | WS_EX_LAYERED; Windows will use black as the chroma key color value. i'm going to ...
3
votes
1answer
71 views

Is it possible to apply a transform matrix to a SVG filter effect

I'm trying to recreate an iphone maps like push pin in SVG and I have the pin part down but I'm wondering how to tackle the shadow. I've seen a bunch of drop shadow examples but they're all just ...
3
votes
3answers
915 views

Add drop shadow to PNG using Cocoa

I have some PNGs with transparent backgrounds that I would like to add shadows to programatically. I've seen examples of adding shadows to square objects, but haven't seen any with complex shapes. So ...
3
votes
3answers
2k views

WPF DropShadowEffect Causing Blurriness

I've observed that applying a DropShadowEffect to a UIElement sporadically causes the UIElement's content to blur a bit. It's a pretty nasty effect: it can cause a photograph to look out of focus or ...
2
votes
3answers
158 views

How to show drop shadows on LIs in a 960 grid based layout?

I am trying to create a page showing a list of products in a grid (960.gs) format. To match the COMP, I need to show a drop shadow on a LI when the user hovers above it. Showing the drop shadow on a ...
2
votes
2answers
187 views

Flex 4.5 turn off globally all objects drop shadows and special fx's and increasing performance?

Is there any way to turn off all special FX's and especially dropShadow's on all objects inside the application ? ( The idea is to increase the performance , another ideas on increasing preformance ...
2
votes
2answers
882 views

Quick drop shadow css question for ie8 not working

Just a quick simple question, this css code will not work in ie8 for a drop shadow, any ideas why it wouldn't work? /* Drop shadow */ -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, ...
2
votes
2answers
730 views

how can I add attached drop shadows to uinavigationbar and uitoolbar

I'm working on an app that uses a custom image for UINavigationBar and UIToolbar, which is fine, but they also need a drop shadow below the nav bar and above the toolbar, which would always rest above ...
2
votes
3answers
2k views

Adding outline shadow to a UIView which is iOS 3.0 compatible

I have two UIViewControllers A and B and they are added as subviews in the AppDelegate with B on top of A. When a UIButton on B is tapped B slides off to the left with the following code: [UIView ...
2
votes
2answers
584 views

html drop shadow best practices

What's the best practice for creating drop shadows around html where the html can be liquid? I used to use a table and have 8 png images (4 sides and 4 corners) as backgrounds for each of the outer 8 ...
2
votes
2answers
2k views

css3 drop shadow under another div, z-index not working

i'm trying to use a drop shadow to make it look like one div (the header) is "above" another. my problem is that the "middle" div is covering the drop shadow. i tried using z-index to put the header ...
2
votes
2answers
1k views

Win32: How to draw outside my window?

Looking at a Windows tooltips class hint window, i see that it draws its drop-shadow outside the hint window's actual rectangle. Using SpyXX - i can get the tooltip's window rect, and class styles: ...
1
vote
1answer
24 views

Drop Shadow in DrawRect

I made this cool pie chart and now I'd like to drop a shadow under it. Is there anyway I can do it with DrawRect ? I'd like to do it right under the pie chart (drawn using DrawRect). Suggestions ...
1
vote
2answers
35 views

iOS: Create one sideded dropshadow

I have the below menu style layout that mimics facebook. I would like to have a dropshadow on the left side like below however the code I am using with layer shadows makes the application LAGGY. I ...
1
vote
1answer
45 views

iOS: Table cell footer dropshadow

I have a tableview with only a few rows. So instead of displaying a bunch of blanks I added a blank UIView to the tableview.footer. However I would like the last cell to cast a dropshadow on the ...
1
vote
1answer
53 views

NSView Drop Shadow Using setShadow:

I'm attempting to make a drop shadow for a custom NSView subclass. So far, I've managed: - (id)initWithFrame:(NSRect)frame { self = [super initWithFrame:frame]; if (self) { ...
1
vote
1answer
63 views

Why the MS filters (dropShadow, glow or shadow) doesn't work for <span> tags in IE?

I just want to apply text shadow to <span> elements in Internet Explorer 6-9. I'm using the following CSS code. .dropShadow { filter: dropshadow(color=#ffff00,offX=5,offY=5); } .glow { ...
1
vote
1answer
80 views

Main NSWindow shadow doesn't change like child windows

The primary window in my app is borderless: [self.window setStyleMask:NSBorderlessWindowMask]; From that window, I also open other child windows. When I click around between those other child ...
1
vote
3answers
462 views

css box shadow on a div container cut off

edit: more general question: I like the box-shadow on divs, however when I place a div directly below the box-shadow'd div, that bottom part of the shadow doesn't overlay on top despite messing with ...
1
vote
2answers
469 views

Algorithm for fast Drop shadow in GDI+

What is an efficient way to add a drop-shadow to an image in GDI? Right now i start with my image: i use ImageAttributes and a ColorMatrix to draw the image's alpha mask to a new image: ...
1
vote
0answers
224 views

(AJAX Control Toolkit) DropShadow Opacity property doesn't work

I'm working on ASP.NET project. When I put DropShadow extender inside a panel there is a new shadow effect but it doesn't change after i set different opacity value. Shadow looks the same with values ...
1
vote
1answer
154 views

Creating an inset dropShadow on a container

I am wondering how I could create a dropshadow on a container that would give the appearance that the container is lower than its parent. Normally the dropshadow is applied primarily to the outside ...
1
vote
1answer
381 views

DropShadowEffect applying to child elements - Silverlight XAML

I have an ItemsControl which contains some nested containers. I want to add a dropshadow around each element of the main ItemsControl. But instead it is adding it to certain containers that are within ...
1
vote
1answer
78 views

drop shadow with tabs not working properly

I am trying to implement the solution listed here: CSS3 box-shadow, all sides but one? I created this jsfiddle using that guys code, adding overflow:hidden to #nav. You can see it here: ...
1
vote
2answers
337 views

WPF: Why does text and elements blur if I use dropshadow effect on a parent item

If I add a DropShadowEffect to an parent element the text of the child elements are blurred. Why? <Grid> <Grid.Effect> <DropShadowEffect /> </Grid.Effect> ...
1
vote
4answers
279 views

Creating an inset dark drop shadow effect with CSS

I'm trying to get an effect like an inset drop shadow effect in CSS that looks like the following image: Does any body know how I can get that effect with CSS?
1
vote
1answer
310 views

manipulate drop shadows in google maps on android platform

I'm using the Google Maps api for Android, and when adding map markers, drop shadows are added automatically. Now the problem I have is that one of the markers I use is black, and the drop shadow is ...
1
vote
2answers
863 views

WPF: Drop shadow on borderless window without custom chrome

Im struggling with drop shadow on WPF-windows with WindowStyle=None and ResizeMode=NoResize. Is there any good alternative to using a DropShadow-effect on the window-content? I have tried WindowChrome ...
1
vote
1answer
1k views

Making a <div> with a drop shadow only on the left and right sides

My goal is to add a drop shadow to the left and to the right side of a #container div, which is 960px wide. The #container itself contains a header, a nav menu, main content, sidebar, and foot. But ...
1
vote
1answer
129 views

CSS Drop shadow how is it possible?

What technique have these guys used to get a nice melow dropshadow on the images ? http://osc4.template-help.com/wt_32151/index.html Thanks in advnace.
1
vote
1answer
163 views

What is the precise explanation of box-shadow and -moz-box-shadow in CSS?

I find the explanations of CSS's box-shadow and -moz-box-shadown somewhat imprecise. http://www.w3.org/TR/2010/WD-css3-background-20100612/#the-box-shadow The third length is a blur distance. ...
1
vote
0answers
157 views

Better dialog shadows in YUI 2?

Here's a tricky one: has anybody seen a YUI dialog/panel implementation with nice OS X style shadows around the dialog, instead of the blocky shadow that is implemented by default with the "underlay" ...
1
vote
0answers
609 views

How to create drop shadows programmatically?

In one iPhone app, I'd like to add drop shadows to a few icons dynamically (the angle of the shadow is not fixed). Is there any built-in API for this purpose? If not, how can this be done? Thanks!
1
vote
2answers
393 views

How to create a window with DropDownShadow like Sticky Notes in Win 7?

How can I create a Win32 window like Sticky Note in Windows 7 which has no border but has drop down shadow effect? I have tried to create a Win32 window without borders (remove ~WS_BORDER), but the ...
1
vote
1answer
984 views

WPF DropShadow Disappears

Wpf dropshadow disappears. Here is how to reproduce. Type the following in xaml pad. <Page.Resources> <DropShadowEffect x:Key="shadow" Opacity="1" ShadowDepth="1" ...
1
vote
2answers
323 views

Problem with css footer

I'm having a problem with a webpage. I'm using the min-height property to place the footer at the bottom of the page (if content is not long enough) and after the content (if content is longer than ...
1
vote
1answer
83 views

PHP - Check to see if an image has a drop shadow added?

I'm wondering if there's a decent way or any of some sort to check an image to see if there is a drop shadow added. Doing this with php, if possible. Just curious if there's any clever way of going ...
1
vote
1answer
1k views

WPF DropShadowEffect with AllowsTransparency=“True”

I want to create Non-Rectangular Window with DropShadowEffect on it. I found this article how to do this. However DropShadowEffect is not shown when running this code. On screenshots you can see that ...
0
votes
1answer
67 views

Adding drop shadow to UITableView doesn't work properly

I've created a sample app for adding drop shadow to a UITableView. When you click on the right navigation button a drop shadow is added to the table. The problem is that the shadow is added only to ...

1 2