Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to slide or move a image from left to right something like in

http://rajeevkumarsingh.wix.com/pramtechnology

The read pentagonal box that moves Ok !

I tried a bit but failed to do so i used the codes as below

    <script type="text/javascript">

<!--

var imgObj = null;

var animate ;

function init(){

   imgObj = document.getElementById('myImage');

   imgObj.style.position= 'absolute'; 

   imgObj.style.top = '240px';

   imgObj.style.left = '-300px';

   imgObj.style.visibility='hidden';

   moveRight();

} 



function moveRight(){

if (parseInt(imgObj.style.left)<=10)

{

   imgObj.style.left = parseInt(imgObj.style.left) + 5 + 'px';

   imgObj.style.visibility='visible';

   animate = setTimeout(moveRight,20); // call moveRight in 20msec

   //stopanimate = setTimeout(moveRight,20);

  }

else

  stop();

  f();



}

function stop(){

   clearTimeout(animate);



}

window.onload =init;

//-->

</script>

<img id="myImage" src="xyz.gif" style="margin-left:170px;" />

There some kind of resolution problem with Firefox and IE as well. How to solve them. Also i am not able to move the things so clearly. Is this possible or not? I want it to be with javascript and not flash.

share|improve this question

2 Answers

up vote 2 down vote accepted
var animate, left=0, imgObj=null;

function init(){

   imgObj = document.getElementById('myImage');
   imgObj.style.position= 'absolute';
   imgObj.style.top = '240px';
   imgObj.style.left = '-300px';
   imgObj.style.visibility='hidden';

   moveRight();
}

function moveRight(){
    left = parseInt(imgObj.style.left, 10);

    if (10 >= left) {
        imgObj.style.left = (left + 5) + 'px';
        imgObj.style.visibility='visible';

        animate = setTimeout(function(){moveRight();},20); // call moveRight in 20msec

        //stopanimate = setTimeout(moveRight,20);
    } else {
        stop();
    }
    //f();
}

function stop(){
   clearTimeout(animate);
}

window.onload = function() {init();};
share|improve this answer
jsfiddle.net/EEQgk/10 for a jsfiddle example – MyStream Jul 12 '12 at 21:37
you have just copied paste my code, nothing else....... – Rajeev Kumar Jul 13 '12 at 2:13
I fixed it - note the small changes. 1) removed the call to f() which was not defined, 2) put proper { } around your else condition, 3) updated your parseInt() to be done once in moveRight and 4) set the position globally so you're not redefining it repeatedly, 5) wrapped your moveRight setTimeout to be inside a function call and 6) set the image (in html) be inside a relatively positioned container. (Also, my jsFiddle works and yours didn't, so if you see any problem with that, let me know and I'll try to help, but the posted code works as you asked for.) – MyStream Jul 13 '12 at 12:49

Use the jQuery library, is really easy to do what you need

http://api.jquery.com/animate/

Follow sample code of page : http://api.jquery.com/stop/

<!DOCTYPE html>
<html>
<head>
  <style>div { 
position: absolute; 
background-color: #abc;
left: 0px;
top:30px;
width: 60px; 
height: 60px;
margin: 5px; 
}
</style>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
  <button id="go">Go</button> 
<button id="stop">STOP!</button>
<button id="back">Back</button>
<div class="block"></div>
<script>
/* Start animation */
$("#go").click(function(){
$(".block").animate({left: '+=100px'}, 2000);
});

/* Stop animation when button is clicked */
$("#stop").click(function(){
$(".block").stop();
});

/* Start animation in the opposite direction */
$("#back").click(function(){
$(".block").animate({left: '-=100px'}, 2000);
});

</script>

</body>
</html>
share|improve this answer
Yes it is - but it doesn't help him learn. Can we get a jsFiddle of your code? – MyStream Jul 12 '12 at 21:13
added a sample code from jQuery – GTSouza Jul 12 '12 at 21:15
and more demos on @flem answer – GTSouza Jul 12 '12 at 21:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.