Forums >
DragResize >
add opacity to my div it loses its resize handles
Author
Message
1) sublime99Group: Members Posts: 13Joined: 12 May 2008Location: CanadaIP: 64.254.--.--
Posted:
In Internet Explorer, when I add opacity to my div it loses its resize handles and capabilities. I have tried various combinations. Adding post creating, adding via the className. Any suggestions?
2) sublime99Group: Members Posts: 13Joined: 12 May 2008Location: CanadaIP: 64.254.--.--
Posted:
by the way is a great script
3) sublime99Group: Members Posts: 13Joined: 12 May 2008Location: CanadaIP: 64.254.--.--
Posted:
just add the following to your page for testing simplicity div{ filter:alpha(opacity=70); }
4) Angus TurnbullGroup: Moderators Posts: 4235Joined: 7 Dec 2003Location: New ZealandIP: 118.92.--.--
Posted:
Yeah, it will, as applying a DirectX filter will essentially clip the DIV to its visible region and this script places the resize handles "outside" the DIV using negative margins.
A simple, but dirty fix is to apply the opacity filter to a div within the resizable div.
- Angus.
5) sublime99Group: Members Posts: 13Joined: 12 May 2008Location: CanadaIP: 64.254.--.--
Posted:
Thanks. I can use kevin's workaround: http://www.twinhelix.com/cgi-bin/forum.pl/dragresize/6
I thought about adding a resize type image to the bottom corner and activating resize when the image was clicked, but it appears complicated.