Kedge & EasyInvest c’est quoi ?

const globe = document.querySelector('.globe');
const globeImage = document.querySelector('.globe img');

let rotation = 0;

function rotateGlobe() {
    rotation += 5;
    globeImage.style.transform = `rotateY(${rotation}deg)`;
    requestAnimationFrame(rotateGlobe);
}

rotateGlobe();
<div class="globe">
    <img src="globe.png" alt="Globe">
</div>

Rejoindre la communauté

A caring designer community to share knowledge with.

Concevoir un site comme celui-ci avec WordPress.com
Commencer