screen_rotation
Copied to Clipboard
<html> <head> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> </head> <body> <div id="app"> <div class='dialog '> <h3>Vue Js Image Zoom In | Zoom Out </h3> <p>Click on the image to zoom out or in.</p> <div class='dialog-content'> <img :style="{ transform: isZoomed ? 'scale(2)' : 'scale(1)' }" @click="toggleZoom" :src="url" /> </div> </div> </div> <script type="module"> const app = new Vue({ el: "#app", data() { return { url: 'https://www.sarkarinaukriexams.com/images/editor/1670265927Capture123243243423.PNG', isZoomed: false } }, methods: { toggleZoom() { this.isZoomed = !this.isZoomed; } } }) </script> <style> .dialog { position: fixed; top: 0px; left: 0px; width: 100%; margin: 0 auto; height: 100%; background: rgba(0,0,0,0.5); border: 1px solid #999; } .dialog-content { width: 400px; height: auto; margin: 0 auto; } .dialog-content img { width: 100%; height: auto; cursor:pointer } </style> </body> </html>