-
Recent Posts
Recent Comments
- R.P. Churchill on TWSL Series 07: Discovery and Data Collection
- R.P. Churchill on A Simulationist’s Framework for Business Analysis: Round Two
- LN on A Simulationist’s Framework for Business Analysis: Round Two
- R.P. Churchill on Starting to Learn About the Java Memory Model
- R.P. Churchill on Multidimensional Arrays in Javascript
Categories
Meta
January 2025 M T W T F S S 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Tag Archives: animation
Cross-Browser Compatibility: My Website Animation, Part 3
Following up on the issue I discussed previously here and here, I finally bit the bullet and straightened out the problems caused in the landing page animation by a certain behavior of Android web browsers. After periodically digging around for … Continue reading
Cross-Browser Compatibility: My Website Animation, Part 2
Digging into yesterday’s problem more I found references to a procedure called font boosting, and a number of ways to potentially control it or turn it off. Font boosting has to do with making the text larger by default on … Continue reading
Cross-Browser Compatibility: My Website Animation, Part 1
The introductory animation on my website has been a source of annoyance for me for some time. It never scaled properly on Android devices. It worked fine on every other browser I was able to test (IE, Edge, Firefox, Chrome, … Continue reading
Reproducing A Clever Animation Product, Part 29
It took a bit of experimentation but the ultimate fix turned out to be quite simple. If the browser’s JavaScript interpreter strips off the second parameter then we can just duplicate the first one. It might not give exactly the … Continue reading
Reproducing A Clever Animation Product, Part 28
In keeping with this week’s theme of researching backward compatibility of the various projects I’ve worked on over the past year I decided to figure out why parts of my fast animation framework weren’t updating as expected. The short answer … Continue reading
Hello, Fort Nelson, BC
Couple of things to report. One, the simulations of maintenance logistics I worked on with RTR Technologies, while working on and with the Aircraft Maintenance Model, incorporated a number of concepts. Many of these were defined in the NAMP (Naval … Continue reading
Posted in Tools and methods
Tagged animation, fast animation framework, general, JavaScript
Leave a comment
Reproducing A Clever Animation Product, Part 26
I got the basics of the fountain effect working. I defined forty elements, gave them random characteristics in a loop, set a delay of 1.5 seconds from the end of the previous animation element, then set the forty elements to … Continue reading
Reproducing A Clever Animation Product, Part 25
I sat down to add in the mods that would allow me to reproduce the fountain effect I’ve described, building on yesterday’s work, and immediately identified some issues. Those will have to be sorted out before proceeding. The animation capability … Continue reading
Reproducing A Clever Animation Product, Part 24
Today I added a new effect and applied it to a top tween that makes up the latest addition to the animation. The effect is based on this equation from the first class you take in physics: x = xo … Continue reading
Reproducing A Clever Animation Product, Part 23
Today I changed the form of specifying a tween effect. It was originally specified as a string (e.g., “linear” or “vibrate_right”) but now it is defined as an object literal. The first member field of the object has to be … Continue reading