- Sold between 100 000 and 250 000 dollars
- Author had a File in an Envato Bundle
- Has been a member for 4-5 years
- Author had a Free File of the Month
- Won a Competition
- Author was Featured
- Item was Featured
- Bought between 10 and 49 items
yeah, coz flash = timeline animations
- United States
- Has been a member for 4-5 years
- Exclusive Author
- Author was Featured
- Sold between 50 000 and 100 000 dollars
- Item was Featured
- Contributed a Tutorial to a Tuts+ Site
- Author had a Free File of the Month
Is there a plugin that can get JavaScript to run faster than 15 frames per second? I’ve been looking for that one for a while.
CrackerJack said
Is there a plugin that can get JavaScript to run faster than 15 frames per second? I’ve been looking for that one for a while.
{
// Calculate new time difference between frames
this.frameLen = 1000 / rate;
}
// Create a Framerate object
this.f = new Framerate();
// Initialize Framerate object
this.f.setRate(10);
this.f.reset();
// Create <p> object inside the page
this.p_obj = document.createElement("p");
this.p_obj.innerHTML = "0.0 seconds";
document.body.appendChild(this.p_obj);
// Reset seconds counter
this.seconds = 0;
// This function will be called constantly to update the counter in the
// <p> object in the page.
this.callback = function()
{
}
// Get amount of frames elapsed
var numFrames = this.f.getFrames();
// Update amount of seconds
this.seconds += numFrames / 10;
/ Show seconds on screen
this.p_obj.innerHTML = Math.floor(this.seconds) + "." +
Math.floor(this.seconds * 10) % 10 +
" seconds";
</p></p>
or someat like dat
- United States
- Has been a member for 4-5 years
- Exclusive Author
- Author was Featured
- Sold between 50 000 and 100 000 dollars
- Item was Featured
- Contributed a Tutorial to a Tuts+ Site
- Author had a Free File of the Month
^ I was being sarcastic 
I think most Flashers here will tell you the one frustrating thing about working with JS is the severe drop in performance on most browsers. So while it’s great to see tools like this, it’s still a step backward in the evolution of web animation.
CrackerJack said
^ I was being sarcasticI think most Flashers here will tell you the one frustrating thing about working with JS is the severe drop in performance on most browsers. So while it’s great to see tools like this, it’s still a step backward in the evolution of web animation.
Lol so was I 
I love Flash …
The post is just to demonstrate ( via the link ) non flash guys can dabble with js , to get pseudo flash effects
- United States
- Has been a member for 4-5 years
- Exclusive Author
- Author was Featured
- Sold between 50 000 and 100 000 dollars
- Item was Featured
- Contributed a Tutorial to a Tuts+ Site
- Author had a Free File of the Month
SportTipsWorld said
Lol so was I
lol touche’ my friend 
CrackerJack said
SportTipsWorld saidlol touche’ my friend
Lol so was I
![]()
hahah.. just relooked at what I posted ( code ) .. I have no fricked idea what that means lololol
- Attended a Community Meetup
- Author had a File in an Envato Bundle
- Author was Featured
- Bought between 1 and 9 items
- Contributed a Tutorial to a Tuts+ Site
- Exclusive Author
- Has been a member for 4-5 years
- Item was Featured
I can see this being useful for making simple presentations but it’s basically a JavaScript slide show. The impressive part I suppose is the timing of “sub-elements” on each slide rather than just the slides themselves.
- United States
- Has been a member for 4-5 years
- Exclusive Author
- Author was Featured
- Sold between 50 000 and 100 000 dollars
- Item was Featured
- Contributed a Tutorial to a Tuts+ Site
- Author had a Free File of the Month
SportTipsWorld said
hahah.. just relooked at what I posted ( code ) .. I have no fricked idea what that means lololol
Yes I feel kind of stupid for not actually reading it 
