Questions tagged [dropshadow]

361 questions
0
votes
0 answers

how to create an inner shadow of an image using easeljs

it's easy to make an inner shadow in Actionscript. just use var myShadow:DropShadowFilter = new DropShadowFilter(); myShadow.inner = true; how to do it with easeljs? Is it not implemented?
Hoy Cheung
  • 1,552
  • 3
  • 19
  • 36
0
votes
1 answer

Lingering WPF Drop Shadow

I have a drop shadow style for a StackPanel. The content is bound to an ObservableCollection and each item is rendered as an Image. When I remove the last item from the collection, the drop shadow remains, even though the image is no longer there.…
Jonathan Mitchem
  • 953
  • 3
  • 13
  • 18
0
votes
1 answer

CSS3 "drop-shadow" on png with inset

Ok I can add shadows to transparent pngs with this: .drop-shadow { -webkit-filter: drop-shadow (0 1px 2px rgba(0,0,0,.5)); -moz-filter: drop-shadow (0 1px 2px rgba(0,0,0,.5)); -ms-filter: drop-shadow (0 1px 2px rgba(0,0,0,.5)); -o-filter:…
andibra
  • 153
  • 4
  • 15
0
votes
3 answers

Two CSS3 Drop Shadows (Left/Riight and Left/Right/Bottom)

I have a wordpress site I'm working on and I'm needing to add CSS3 drop shadows to four elements. Content-menu-wrapper is independent of the other divs (not graphically connected) and is functional. Next divs are content wrapper, footer,…
0
votes
3 answers

drop shadow CSS with a gradient

Im working on a project using HTML and CSS and I want to replicate something like this used on this site. http://slb.com/hse/hse_policy.aspx The drop shadow that surrounds the container div around the top and more importantly how do you get a…
Sam Kelham
  • 1
  • 1
  • 1
0
votes
2 answers

Simulate "filter: drop-shadow" behavior for better browser support

I have following design. And following is the mark up for the same.
 

Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac…

Kushal
  • 3,112
  • 10
  • 50
  • 79
0
votes
2 answers

Move drop shadow of TabWidget along with it to bottom of the screen

I have an app that uses fragments and tabs. I have moved the tabs to the bottom of screen, but the tabwidget's shadow still at the top of the screen(. How to show it above the tabwidget. My main xml is same as in the following question, but slightly…
Ron
  • 24,175
  • 8
  • 56
  • 97
0
votes
3 answers

can't get rid of top and bottom drop shadows

Why with the following code, I still can't get rid of drop shadows at the top and bottom. Although the drop shadows are "small", yet still they are there. div#inner_container { width: 960px; margin: 0 auto; background-color: rgb(255, 255, 255); …
Jawad
  • 8,352
  • 10
  • 40
  • 45
0
votes
1 answer

DrawRect add text shadow

I am using -drawRect for the first time in a custom UITableViewCell, and I want to know how I could add 1px dropShadows to all of the text being drawn, and the image (self.image). Thanks in advance. - (void) drawRect:(CGRect) rect { …
max_
  • 24,076
  • 39
  • 122
  • 211
0
votes
3 answers

Flash AS3 drop shadows don't show up when changing height & width

In as3 I'm creating a drop shadow, which works fine. But when I change the height or width of the object (mcWhiteBorder) the drop shadow does not appear at all. Any ideas? var mcWhiteBorder:whiteBorder = new whiteBorder(); var…
Matt
  • 896
  • 5
  • 18
  • 47
0
votes
3 answers

drop shadow on HTML objects

I am trying to get a dropshadow effect going on selected HTML elements (input text, select, div etc). The solutions given by many internet users were using CSS3 solution where it uses: -moz-box-shadow -webkit-box-shadow box-shadow However, this…
James
  • 579
  • 10
  • 26
0
votes
1 answer

WPF: How do I apply effects such as a DropShadowEffect class to a TextBlock Run element in WPF?

How do I apply effects such as a DropShadowEffect class to a TextBlock Run element in WPF? Think of it as a way of highlighting certain areas of text in a TextBlock where the Run element is located, but applying an individual effect to that area…
Mathy
0
votes
3 answers

Stack two borders with drop-shadows?

How could I wrap a border around another border and have them both use inset drop-shadows (like double matting in a picture frame)?
redleaf
  • 415
  • 7
  • 20
0
votes
1 answer

Shadow in separate view from UIImage for dynamic adjustments

I would like to obtain this effect (http://stackoverflow.com/questions/7023271/how-to-adjust-drop-shadow-dynamically-during-an-uiimageview-rotation) but from a more complex image than just a red square ! If the link ever gets broken, it's a about…
0
votes
1 answer

is there a way to not show the rounded corner for the top and bottom cell of each section in grouped UITableView?

I want to instead change them to be straight rectangles and adding a drop shadow on four sides of each section. Is there a way to do that? I tried the following on each cell, but it seems not work with me. [cell.layer…
tom
  • 14,273
  • 19
  • 65
  • 124