012-manual.html (581B)
1 <!DOCTYPE html> 2 <?xml version="1.0" encoding="utf-8"?> 3 <html xmlns="http://www.w3.org/1999/xhtml"> 4 <head> 5 <title>Feedback image and border-radius</title> 6 <style type="text/css"> 7 body 8 {background-color:silver; 9 margin:0;} 10 div 11 {background-color:white;} 12 div > div 13 {display:block; 14 width:100px; 15 height:100px; 16 border:solid thin green; 17 border-radius:50px;} 18 </style> 19 </head> 20 <body> 21 <div> 22 <div draggable="true" ondragstart="event.dataTransfer.effectAllowed = 'copy'"></div> 23 </div> 24 <p>Try to drag green circle above. Feedback overlay should be a circle.</p> 25 </body> 26 </html>