Guest User

Untitled

a guest
Jun 23rd, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <img id="map" src="img/bangabandhu111-1170x660.jpg" alt="">
  2.  
  3. <button type="button" onclick="zoomin()" class="icon"><i class="fas fa-plus"></i></button>
  4. <button type="button" onclick="zoomout()" class="icon"><i class="fas fa-minus"></i></button>
  5.  
  6. <script>
  7. function zoomin() {
  8. var myImg = document.getElementById("map");
  9. var currWidth = myImg.clientWidth;
  10. if (currWidth == 2500) return false;
  11. else {
  12. myImg.style.width = (currWidth + 100) + "px";
  13. }
  14. }
  15. function zoomout() {
  16. var myImg = document.getElementById("map");
  17. var currWidth = myImg.clientWidth;
  18. if (currWidth == 100) return false;
  19. else {
  20. myImg.style.width = (currWidth - 100) + "px";
  21. }
  22. }
  23. </script>
Advertisement
Add Comment
Please, Sign In to add comment