Pages

Thursday, December 20, 2012

DRAG AND DROP IMAGES IN HTML5

THE FIRST TUTORIAL I HTML5

THE CODE

WHAT IS HTML5


<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
#div1 {width:350px;height:70px;padding:10px;border:1px solid #aaaaaa;}
</style>
<script>
function allowDrop(ev)
{
ev.preventDefault();
}

function drag(ev)
{
ev.dataTransfer.setData("Text",ev.target.id);
}

function drop(ev)
{
ev.preventDefault();
var data=ev.dataTransfer.getData("Text");
ev.target.appendChild(document.getElementById(data));
}
</script>
</head>
<body>

<p>Drag the W3Schools image into the rectangle:</p>

<div id="div1" ondrop="drop(event)" ondragover="allowDrop(event)"></div>
<br>
<img id="drag1" src="http://i47.tinypic.com/165s8x.jpg" draggable="true" ondragstart="drag(event)" width="336" height="69">

</body>
</html>
 and save it .html 




No comments:

Post a Comment