What you want to see on DotNetFunda.com ?
DotNetFunda.Com Logo
Twitter TwitterLinkedIn
YouTubeGoogle
 Online : 1129 |  Welcome, Guest!   Register  Login
 Home > Blogs > JavaScript > Image Rotating Using JavaScript ...
Ajay.Kalol

Image Rotating Using JavaScript

 Blog author: Ajay.Kalol | Posted on: 6/4/2012 | Category: JavaScript Blogs | Views: 978 | Status: [Member] | Points: 75 | Alert Moderator     Download source file


Image Rotation in JavaScript : 

Script for Rotation :
<script type="text/javascript">
        var interval;
        var Rad = 10;
        function StartRotation() {
            interval = setInterval(start, 150);
        }
        function start() {
          document.getElementById("ImgRotate").style.MozTransform = "rotate(" + Rad + "deg)";                      
          document.getElementById("ImgRotate").style.webkitTransform = "rotate(" + Rad + "deg)";
            Rad += 10;
        }
        function StopRotation() {
            clearInterval(interval);

        }

    </script>



<
img alt="Img" id="ImgRotate" src="Images/DREAM-wall-1024-768.jpg" width="120px"
            height="120px" />
        <br />
        <br />
        <input type="button" value="Start" onclick="StartRotation();" />
        <input type="button" value="Stop" onclick="StopRotation();" />



http://ajaypatelfromsanthal.blogspot.in
Found interesting? Add this to:



 More Blogs from Ajay.Kalol

 More ...

About Ajay Patel

Experience:1 year(s)
Home page:http://ajaypatelfromsanthal.blogspot.in/
Member since:Thursday, April 05, 2012
Level:Starter
Status: [Member]
Biography:
>> Write Response - Respond to this post and get points

More Blogs

About Us | Contact Us | The Team | Advertise | Software Development | Write for us | Testimonials | Privacy Policy | Terms of Use | Link Exchange | Members | Go Top
General Notice: If you find plagiarised (copied) contents on this page, please let us know the original source along with your correct email id (to communicate) for further action.
Copyright © DotNetFunda.Com. All Rights Reserved. Copying or mimicking the site design and layout is prohibited. Logos, company names used here if any are only for reference purposes and they may be respective owner's right or trademarks. | 5/23/2013 12:40:28 AM