How i manage all the circles speed constant? Plz help | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

How i manage all the circles speed constant? Plz help

https://code.sololearn.com/Wkzc2u2Bsyqt/?ref=app

1st May 2020, 5:38 PM
Ali Mansoor
5 Answers
+ 3
// Add this code snippet in the JS tab: var st = document.querySelector('head style:last-of-type'); var tf = +prompt('Enter the time factor') || 0; tf = tf<=0 ? 1 : tf; st.textContent = st.textContent.replace(/(\d*\.?\d+)s/gm,function(_,n) { return n/tf+'s'; }); /* on start, give the "time factor": 1 for no change, less than 1 for slowing, more than 1 to accelerate, less or equals to 0 or not numbers default to 1 ... and see the magic ;) examples: 0.1 slow by 10 the speed, 2 accelerate by 2 the speed */
2nd May 2020, 2:15 AM
visph
visph - avatar
+ 1
You don't need to understand: add just this short code, and run your page: you will be prompted for a factor to apply to the speed, and the csd would be updated consequently (and automaticaly) :P (basically this is what you should done else: all values with unit 's' (seconds) needs to be changed by multiplying (or dividing) them by a single value...)
2nd May 2020, 8:08 AM
visph
visph - avatar
+ 1
Ok you will do it manually or ok you will try the automatic way by adding my script to your js tab? :o
2nd May 2020, 8:31 AM
visph
visph - avatar
- 1
I can't under stand js plz help me in css3
2nd May 2020, 7:27 AM
Ali Mansoor
- 1
Ok thanks
2nd May 2020, 8:28 AM
Ali Mansoor