Accueil Services Réalisations Ressources Blog Contact

Quel outil Excel pour mon besoin ?

4 questions rapides pour trouver la solution adaptée : formation, automatisation, tableau de bord ou ressources gratuites.

Question 1 / 4
(function(){ var c=document.getElementById('navCanvas');if(!c)return; var ctx=c.getContext('2d');var pts=[]; var COLS=['34,197,94','14,165,233','168,85,247']; function resize(){c.width=c.offsetWidth;c.height=64; pts=Array.from({length:32},function(){return{x:Math.random()*c.width,y:Math.random()*64,vx:(Math.random()-.5)*.4,vy:(Math.random()-.5)*.4,r:Math.random()*1.5+.5,a:Math.random()*.6+.2,col:COLS[Math.floor(Math.random()*3)]};}); } resize();window.addEventListener('resize',resize); (function draw(){ctx.clearRect(0,0,c.width,64);pts.forEach(function(p){p.x+=p.vx;p.y+=p.vy;if(p.x<0||p.x>c.width)p.vx*=-1;if(p.y<0||p.y>64)p.vy*=-1;ctx.beginPath();ctx.arc(p.x,p.y,p.r,0,Math.PI*2);ctx.fillStyle='rgba('+p.col+','+p.a+')';ctx.fill();});requestAnimationFrame(draw);})(); })();