JavaScript - Simple Movable Object

In this tutorial we will create a Simple Movable Object using JavaScript. This code can move the object to an another HTML element when drop. It will get the object id, then append it to the parent as a new child element. You can apply this script to your system, it is a user-friendly program feel free to modify it. We will use JavaScript to add some new interactive element that is written in the HTML. It extends your website experience and add an additional feature that help you engage with the user.

Getting Started:

This is the link for the bootstrap that i used for the layout design https://getbootstrap.com/.

The Main Interface

This code contains the interface of the application. To create this just write these block of code inside the text editor and save this as index.html.
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  5. <link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
  6. </head>
  7. <nav class="navbar navbar-default">
  8. <div class="container-fluid">
  9. <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  10. </div>
  11. </nav>
  12. <div class="col-md-3"></div>
  13. <div class="col-md-6 well">
  14. <h3 class="text-primary">JavaScript - Simple Movable Object</h3>
  15. <hr style="border-top:1px dotted #ccc;"/>
  16. <div class="col-md-1"></div>
  17. <div class="col-md-5" style="border:1px SOLID #ccc; height:200px;" ondrop="drop(event)" ondragover="dragOver(event)"></div>
  18. <div class="col-md-1"></div>
  19. <div class="col-md-5" style="border:1px SOLID #ccc; height:200px;" ondrop="drop(event)" ondragover="dragOver(event)"></div>
  20. <br style="clear:both;"/><br />
  21. <center><img src="images/object.jpg" id="object" height="200" width="300" draggable="true" ondragstart="drag(event)"/></center>
  22. </div>
  23. <script src="js/script.js"></script>
  24. </body>
  25. </html>

Creating the Script

This code contains the script of the application. This code can move the object from div to div. To do this just copy and write these block of codes as shown below inside the text editor and save it as script.js inside the js directory
  1. function dragOver(e){
  2. e.preventDefault();
  3. }
  4.  
  5. function drop(e){
  6. e.preventDefault();
  7. var data = e.dataTransfer.getData("data");
  8. e.target.appendChild(document.getElementById(data));
  9. document.getElementById(data).style="width:100%;";
  10. }
  11.  
  12. function drag(e){
  13. e.dataTransfer.setData("data", e.target.id);
  14. }
There you have it we successfully created a Simple Movable Object using JavaScript. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

Add new comment