Bonnes Pratiques Web & Cloud
58.8K views | +0 today
Follow
Bonnes Pratiques Web & Cloud
Administration cloud et développement web
Curated by Mickael Ruau
Your new post is loading...
Your new post is loading...

Popular Tags

Current selected tag: 'animations'. Clear
Scooped by Mickael Ruau
Scoop.it!

How to Play and Pause CSS Animations with CSS Custom Properties

How to Play and Pause CSS Animations with CSS Custom Properties | Bonnes Pratiques Web & Cloud | Scoop.it
Let’s have a look CSS @keyframes animations, and specifically about how you can pause and otherwise control them.There is a CSS property specifically for...
No comment yet.
Scooped by Mickael Ruau
Scoop.it!

Using requestAnimationFrame | CSS-Tricks

Using requestAnimationFrame | CSS-Tricks | Bonnes Pratiques Web & Cloud | Scoop.it

There used to be just one way to do a timed loop in JavaScript: setInterval(). If you needed to repeat something pretty fast (but not as-fast-as-absolutely-possible like a for loop), you'd use that. For the purposes of animation, the goal is sixty "frames" per second to appear smooth, so you'd run a loop like this:

setInterval(function() { // animiate something}, 1000/60);

There is a better alternative to this now. Paul Irish introducedrequestAnimationFrame over two years ago.

Mickael Ruau's insight:

Why better?

As Paul explained:

  • The browser can optimize it, so animations will be smoother
  • Animations in inactive tabs will stop, allowing the CPU to chill
  • More battery-friendly

#The Simplest Possible Example

function repeatOften() { // Do whatever requestAnimationFrame(repeatOften);}requestAnimationFrame(repeatOften);
No comment yet.
Scooped by Mickael Ruau
Scoop.it!

Introducing Grunticon 2! Style & Animate your SVGs | Filament Group, Inc., Boston, MA


 

Version 2 of Grunticon makes it easy to embed SVG markup into your page so you can apply CSS and JavaScript to the actual SVG markup.

No comment yet.
Scooped by Mickael Ruau
Scoop.it!

GreenSock for Beginners: a Web Animation Tutorial (Part 1) — SitePoint

GreenSock for Beginners: a Web Animation Tutorial (Part 1) — SitePoint | Bonnes Pratiques Web & Cloud | Scoop.it

GreenSock is the de facto industry-standard JavaScript animation platform available today.

It’s a mature JavaScript library that has its roots in Flash-based animation. This means the guys behind GreenSock know web animation inside-out, the library has been around for a long time and is not going anywhere any time soon.

GSAP includes a comprehensive suite of tools, utilities, and plugins you can leverage to handle any web animation challenge you happen to face, from animating SVGs consistently across multiple browsers to coding complex animation sequences, dragging elements across the screen, splitting and scrambling text, and so much more.

Mickael Ruau's insight:

To mention just three things I particularly love about GreenSock:

  • Although the library is mega rich in terms of features, the learning curve is relatively shallow because it uses an intuitive and consistent syntax across all its various implementations and plugins. In addition, it offers awesome documentation, tutorials, and support via the GSAP Forums. Also, the library itself is continually updated and maintained. These are all crucial factors when building a project which relies on an external library for any of its key features and user experience
  • It’s modular and light-weight, which means it won’t add bloat to your web projects
  • Thanks to its powerful timeline functionality, GSAP affords precise control over the timings not only of single tweens, but also of multiple tweens as part of a whole animation flow.
No comment yet.
Scooped by Mickael Ruau
Scoop.it!

Animista

Animista is a place where you can play with a collection of ready to use CSS animations, tweak them and download only those you will actually use.
No comment yet.
Rescooped by Mickael Ruau from Web Inspiration
Scoop.it!

Exploring the Latest CSS Animation Trends in Web Design

Exploring the Latest CSS Animation Trends in Web Design | Bonnes Pratiques Web & Cloud | Scoop.it
These trends explore the current era in website animation. While JS is a fantastic language, CSS has become easier and heavily supported by the design community.
Via Jean-Jacques Roland
No comment yet.
Rescooped by Mickael Ruau from Web Increase
Scoop.it!

CSS animation guide for novices

CSS animation guide for novices | Bonnes Pratiques Web & Cloud | Scoop.it
Advertise here with BSAAnyone who lands up on your website would need a reason to stay. CSS i.e Cascading Style Sheets gives you that reason. CSS is basically a way to style your web pages and also to create animations.

Via Jean-Jacques Roland
No comment yet.
Scooped by Mickael Ruau
Scoop.it!

Portfolio Rework Part 1: Animation, Micro interaction & SVG by Geoffrey Crofte

Portfolio Rework Part 1: Animation, Micro interaction & SVG by Geoffrey Crofte | Bonnes Pratiques Web & Cloud | Scoop.it
Stéphanie reworked her Portfolio and blog in 2018. I (Geoffrey) personally worked on the coding part, but also on the animation and micro-interaction part. And that’s what I want to write about today. Animation can be considered as part of a visual identity. Let’s go through the different little animations and their specificities. I want to share with you some tips, things I learnt before and practiced while creating those interactions, to inspire you.Continue reading
No comment yet.
Scooped by Mickael Ruau
Scoop.it!

Understanding JavaScript's requestAnimationFrame() method for smooth animations

requestAnimationFrame() is a JavaScript method for creating smoother, less resource intensive JavaScript animations. See how to take advantage of this method in this comprehensive tutorial.
No comment yet.
Scooped by Mickael Ruau
Scoop.it!

Wick: The Internet's Free and Open-Source Creation Toolkit

Wick is a free Flash-like browser-based toolkit for creating small interactive things for the Internet. With Wick, you can create games, animations, and everything in between. Your creations can run on any device with a web browser - that means mobile too. And since Wick lives in the browser, you don't have to download any extra software to use it!

No comment yet.
Scooped by Mickael Ruau
Scoop.it!

Instagiffer (◑.◑)

Instagiffer (◑.◑) | Bonnes Pratiques Web & Cloud | Scoop.it
  • Make beautiful cinemagraphs and subtle movement GIFs in seconds
  • Convert GIFs to Instagram or Vine videos with sound (just save as .webm or .mp4)
  • Make 3D GIFs, slow motion GIFs, GIFs using homemade cellphone videos. Combine GIFs. Endless possibilities!

 

No comment yet.
Rescooped by Mickael Ruau from Web Increase
Scoop.it!

Animate to Different End States Using One Set of CSS Keyframes | CSS-Tricks

Animate to Different End States Using One Set of CSS Keyframes | CSS-Tricks | Bonnes Pratiques Web & Cloud | Scoop.it
I have recently live coded a pure CSS random rainbow particle explosion. There's a source in the middle of the screen, and rainbow particles shoot out with
Via Jean-Jacques Roland
No comment yet.
Rescooped by Mickael Ruau from CSS3 et HTML5 pratiques
Scoop.it!

9 Creative CSS3 Animation Tools You Should Bookmark | SmashingApps.com

9 Creative CSS3 Animation Tools You Should Bookmark | SmashingApps.com | Bonnes Pratiques Web & Cloud | Scoop.it

Are you looking for some free to use CSS3 animation tools? Well, if your answer is yes, then you are lucky enough to land on the right page.


Via Guillaume Mignotte
No comment yet.
Scooped by Mickael Ruau
Scoop.it!

8 outils pour créer votre présentation en ligne | WebDesignWeb

8 outils pour créer votre présentation en ligne | WebDesignWeb | Bonnes Pratiques Web & Cloud | Scoop.it

Créer une animation a souvent été considéré comme un des aspects les plus complexes en termes de webdesign. Il s’agit d’une activité chronophage qui requiert un logiciel puissant, une expertise technologique et un processeur rapide. 
Cependant, ces dernières années, l’émergence d’outils de présentation et d’animation en ligne a simplifié ce lourd procédé. La plupart des applications web énoncées ci-dessous sont très simples à manipuler et offrent la possibilité de créer des animations sur-mesure en un rien de temps.
Elles génèrent toutes du contenu HTML5, format libre, compatible avec la plupart des browsers. Ce qui signifie que vous n’avez plus à vous soucier des contraintes d’affichage sur vos divers périphériques. Par le biais de cette technologie, votre travail est consultable partout et sur tous types de supports web y compris mobiles, nécessitant juste une connexion internet. De plus, votre contenu est enregistré directement sur un serveur ce qui évite toute perte de fichier.
Vous trouverez ci-dessous quelques unes de ces plateformes parmi les meilleures

No comment yet.