JavaScript - Simple Image Rotation

In this tutorial we will create a Simple Image Rotation using JavaScript. JavaScript is a scripting or programming language that allows you to implement complex things on web pages. It is widely used in designing a stunning website. It is an interpreted programming language that has a capabilities of Object-Oriented. So Let's do the coding...

Getting started:

First you have to download bootstrap framework, 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. .rotater {
  7. transition: all 0.3s ease;
  8. border: 0.0625em solid black;
  9. border-radius: 3.75em;
  10. }
  11. </style>
  12. </head>
  13. <nav class="navbar navbar-default">
  14. <div class="container-fluid">
  15. <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  16. </div>
  17. </nav>
  18. <div class="col-md-3"></div>
  19. <div class="col-md-6 well">
  20. <h3 class="text-primary">JavaScript - Simple Image Rotation</h3>
  21. <hr style="border-top:1px dotted #ccc;"/>
  22. <br /><br />
  23. <div class="col-md-3"></div>
  24. <div class="col-md-6">
  25. <center><img src="image.png" class="rotater" width="250" height="250" id="image"/></center>
  26.  
  27. <br /><br />
  28. <button type="button" class="btn btn-success pull-left" onclick="rotateLeft()"><span class="glyphicon glyphicon-arrow-left"></span> Rotate Left</button>
  29. <button type="button" class="btn btn-success pull-right" onclick="rotateRight()"><span class="glyphicon glyphicon-arrow-right"></span> Rotate Right</button>
  30. </div>
  31. </div>
  32. <script src="js/script.js"></script>
  33. </body>
  34. </html>

Creating the Script

This code contains the script of the application. This code will rotate the image base on the clicked button. 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 folder.
  1. var angle = 0;
  2.  
  3. function rotateRight(){
  4.  
  5. var img = document.getElementById('image');
  6. angle += 90;
  7.  
  8. image.style.transform = "rotate("+angle+"deg)";
  9. }
  10.  
  11. function rotateLeft(){
  12.  
  13. var img = document.getElementById('image');
  14. angle -= 90;
  15.  
  16. image.style.transform = "rotate("+angle+"deg)";
  17. }
There you have it we successfully created a Simple Image Rotation 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