var TxtType = function(el, toRotate, period) { this.toRotate = toRotate; this.el = el; this.loopNum = 0; this.period = parseInt(period, 10) || 2000; this.txt = ''; this.tick(); this.isDeleting = false; }; TxtType.prototype.tick = function() { var i = this.loopNum % this.toRotate.length; var fullTxt = this.toRotate[i]; if (this.isDeleting) { this.txt = fullTxt.substring(0, this.txt.length - 1); } else { this.txt = fullTxt.substring(0, this.txt.length + 1); } this.el.innerHTML = ''+this.txt+''; var that = this; var delta = 200 - Math.random() * 100; if (this.isDeleting) { delta /= 2; } if (!this.isDeleting && this.txt === fullTxt) { delta = this.period; this.isDeleting = true; } else if (this.isDeleting && this.txt === '') { this.isDeleting = false; this.loopNum++; delta = 500; } setTimeout(function() { that.tick(); }, delta); }; window.onload = function() { var elements = document.getElementsByClassName('typewrite'); for (var i=0; i
top of page
Renais-banner.png

Renais

EMAIL DESIGN ✦ DIGITAL & PRINT DESIGN

Work
Multiple project types, from email automation flows design to print, digital assets across website and socials and more.

Renais

EMAIL DESIGN ✦ DIGITAL & PRINT DESIGN

PROJETS
Travail sur une variété de projets, de l'email design (création de flows) à des objets imprimés, ou encore création de contenu digital pour le site web et les réseaux...

renais-web-page1.png
renais-web-page2.png
renais-web-page3.png

MORE WORK

lea.morales.chanard{at}gmail.com

  • Behance-Logo_edited
  • Medium-512_edited
  • Instagram
  • LinkedIn
bottom of page