mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-19 02:43:07 +09:00
19 lines
584 B
HTML
19 lines
584 B
HTML
<!DOCTYPe html>
|
||
<meta charset='utf-8'>
|
||
<title>drag and drop – feedback overlay for heavily styled elements – 004</title>
|
||
<style>
|
||
a {
|
||
display: block;
|
||
height: 200px;
|
||
width: 200px;
|
||
background-color: blue;
|
||
box-shadow: 10px 10px 10px gray;
|
||
}
|
||
div {
|
||
background-color: orange;
|
||
}
|
||
</style>
|
||
|
||
<p>Drag the blue box below downwards. The drag placeholder should resemble the blue box. It may optionally also include the box's shadow, but must not include the orange rectangle.</p>
|
||
|
||
<div><a href='#' draggable="true" ondragstart="event.dataTransfer.effectAllowed ='copy'"></a></div>
|