
Illustration and animation
The pictures we make and use.
We minimise the use of photos on our website, using bespoke illustrations instead. Our illustrations take inspiration from the same places as the rest of our brand: Saul Bass movie posters and Bauhaus.
We create bold, colourful, abstract or semi-abstract illustrations using cut-out shapes. We juxtapose the precision of digital with the organic, human nature of homemade craft.
Texture suggests ink and the rough surface of paper.
We use cutouts for framing screenshots too.

Animation
We use animation subtly: animations are slow and smooth and use ease.
We use ScrollTrigger and GSAP. The libraries are added to the head of the site, and JavaScript in the head creates a CSS custom property that knows the percentage of the page that’s been scrolled.
Two CSS classes (.rotate-on-scroll and .rotate-forever) can be used to implement simple animations. More complex animations are obviously possible.
Hover states in Divi are also used to set a slow fade from one colour to another on hover.
JavaScript for fade-in
<script>
jQuery(document).ready(function($){
gsap.from(".svg-image", {duration: 12, opacity:0, y:150, rotate: 30, ease:"back"});
});
</script>
