Home › Forums › JavaScript › How to increase or decrease increment speed in javascript?
- This topic is empty.
-
AuthorPosts
-
February 3, 2013 at 5:31 pm #42449
AlirezaM
ParticipantHello!
Is there any way to change increment speed (speed of a++ or a–) in javascript?
If yes how? and where to put the code?
Thanks in advance!
Alireza.M
February 3, 2013 at 9:00 pm #123251dfogge
Participanti’d need to see your code to know how to help you with your specific issue, but in the meantime this stackoverflow may hold your answer:
http://stackoverflow.com/questions/10586890/increment-integer-by-1-every-1-second
February 4, 2013 at 3:37 am #123263AlirezaM
ParticipantActually I want to increase this script’s speed of 0 to 100.
http://codepen.io/JoshBlackwood/pen/cqDib
What’s your idea?
February 4, 2013 at 8:10 am #123268CarlRosell
Participantin that case you could only change the setInterval number to a smaller number than 100.
February 4, 2013 at 8:18 am #123269Paulie_D
MemberIf the number at the end
}, 100);
were to be 1000, then the indicator will increment every 1000ms or every 1 second.
You can adjust the increment speed with that.
100 = 0.1s
500 = 0.5s
2000 = 2s
February 4, 2013 at 12:45 pm #123295AlirezaM
ParticipantYes, that’s it.
Thank you Paulie! it worked.
Now, If I want to use multiple of this progress bars inside of one page what I should do?
When I put multiple progress bars in one page one of them works but the others not.
February 4, 2013 at 1:29 pm #123301Paulie_D
Member>If I want to use multiple of this progress bars inside of one page what I should do?
Don’t….I can’t think of anything more annoying.
February 4, 2013 at 2:43 pm #123312AlirezaM
ParticipantWhat do you mean by saying this?
I have questions about web and will ask here because here is exactly the right place.
February 4, 2013 at 3:09 pm #123314AlirezaM
ParticipantThe reason of doing this is that I show my costumers different colors of these progresses.
Now, I changed those ids to classes but the problem is I want to put them different percentages but all of them works exactly like first one.
I mean I give them for example : 10% , 20%, 30% and 40% but all of them work till 10%.
February 4, 2013 at 4:49 pm #123323AlirezaM
ParticipantBut if you read previous comments I could change the speed by Paulie’s helps.
Now I want to use multiple progresses in one page.
February 4, 2013 at 5:19 pm #123327AlirezaM
ParticipantYes man.
Now it’s working.
You noticed it’s not clean js, can you change it to be as clean as possible?
February 4, 2013 at 5:26 pm #123330Paulie_D
MemberSheesh….do some of your own work why don’t you?
February 4, 2013 at 5:35 pm #123333AlirezaM
ParticipantDear Paulie if I was that professional I never asked my questions here.
February 4, 2013 at 5:39 pm #123334Paulie_D
MemberBut if you don’t try, how will you learn?
February 4, 2013 at 5:40 pm #123336AlirezaM
ParticipantI’m really trying to learn but program languages is really hard to learn for me .
-
AuthorPosts
- The forum ‘JavaScript’ is closed to new topics and replies.