When I drag and drop an element on my page the element becomes "ghosted". Basically it gets some transparency value.
Is there some way to make it opacity: 1;?
|
When I drag and drop an element on my page the element becomes "ghosted". Basically it gets some transparency value. Is there some way to make it |
|||||||||||||||||||
|
|
It looks like it can't be done. The dragged element is put into container that has it's own, lower than 1, opacity. This means that while you can lower the opacity of the dragged element you can't get it higher than the opacity of the encapsulating element. It might be possible to override default browser settings for such element, but since nothing is added to DOM during the drag it would be very tricky at best. |
|||
|
|
If you are not dragging and dropping elements from outside of the web page (from the operating system) then you could solve this problem easily by implementing your own drag and drop. There are numerous examples of pure javascript drag and drop which will function perfectly in an HTML5 environment and would be completely customizable by you. answer: (use the old way) |
|||
|
|
|
I think the transparency doesn't come from the web contents but from the browser and OS. If you want to change the opacity, you must to tweak or hack the browser and OS |
|||
|
|
|
as already mentioned, this is handled by the browser -> you cannot change this behavior, but if you really need this effect try to look for mouse move when mouse is down (short: dragging), check what element is selected and create a copy on the fly that follows your mouse cursor. looks like an ideal job for jQuery ;) but if you don't need it desperately I wouldn't try to change the browsers' default values, as people are used to it and may be confused if something behaves in another (unknown) way |
|||
|
|
|
altough this is propably not the real solution of the core problem, I have an idea what might work, at least I tested this in one of my GWT project some time ago and it worked, so I guess it might work in native JS as well altough I have no code example:
There is definitely a lot of adjustment work to do in CSS and JS as well, but It might be a trick to overwhelm the JS standard. |
|||
|
|
Suggestion, do the following, now for this I m using jQuery, try it, before saying something wont work, we are not here to give answers, but here to point you in the right direction.
then you need to come up with away to tell that it has stoped draging and dropped into position, and then to RemoveClass('overdrag'); This is not hard to do, so I think you should be able to do it. I want to thank @DonaldHuckle as this is really his solution not mine. |
|||||
|
|
If you are using JavaScript then in the function which handles the dragStart event include set the style opacity to 1 example:
|
|||||
|