Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. Width issue with Rotated Image

Width issue with Rotated Image

Scheduled Pinned Locked Moved Web Development
helpjavascripthtmltoolsannouncement
1 Posts 1 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    Sifar 0
    wrote on last edited by
    #1

    I have written below code. Need to run on IE versions, so used filter for rotation. Clicking several times on the button, that will update the width of the image, will re-position the image. Any help will be appreciated.

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>Zoom Issue</title>

    <style>
    .ImgClass{
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    height : auto;
    width : 100%;

    }
    .divClass{
    width : 800px;
    height : 750px;
    }

    </style>
    </head>

    <SCRIPT type="text/javascript">
    function zoomImage(){
    document.getElementById('myImage').style.width = document.getElementById('myImage').offsetWidth * 1.5;
    }
    </SCRIPT>

    <body>
    <input type="button" id='btnClick' value='Click' onClick="zoomImage();"/>
    <DIV class='divClass'>
    <IMG class='ImgClass' id='myImage' src='Image.jpg' />
    </DIV>

    </body>
    </html>

    Regards, -SIFAR.

    1 Reply Last reply
    0
    Reply
    • Reply as topic
    Log in to reply
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes


    • Login

    • Don't have an account? Register

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • World
    • Users
    • Groups