Archived entries for Tutorials

How to Make a Mahl Stick

I made a Mahl Stick recently. For those of you who don’t know what one of those is, it’s a handy little instrument used by artists and signwriters to avoid smudging the wet paint with the palm of their hand as they work and potentially ruining what they are doing. Kind of similar to snooker players using a bridge so they don’t foul during a tricky shot.

mahl stick

You can buy Mahl sticks in specialist art and craft stores or on the internet, but if you are on a budget it’s pretty easy to make one for a fraction of the price. Here’s what you’ll need:

Continue reading…

Basic CSS3 Transitions

If you’re viewing this on Internet Explorer, download a proper browser then take another look!

I’ve been looking lately into what you can do nowadays with good browsers and webkit transitions to add little moving flourishes to site design. I think if these transitions are employed subtly and not obtrusively they can be really cool. It also means that you can add an effect when changing from one style to another using CSS3 without having to employ Flash or Javascript. Of course, you have to remember that Internet Explorer doesn’t support these transitions.

In the example below, I’ve just added an ease-in-out to an H1 class with a ribbon image background. When hovered over you get a subtle movement of the banner that would be cool for an a:link to another page.

Ribbon

 
  .ribbon-header {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  }

  .ribbon-header, article:hover >.ribbon-header {
  padding: 0 3.5em 0 2em;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  }

You can do lots of crazy stuff. Hover over the Twitter icon below to see it spin. The heart icon changes colour from black to red and moves from left to right. These are just quick examples, you can finesse them more and decide what you want to do with the animation and transitions.

Just remember, you need to apply the Vendor prefixing for the different browsers: -moz- for Firefox 5+, -webkit- prefix for Safari, Chrome and the various mobile webkit browsers and without any prefixes, for when browsers support the vendor-neutral syntax.

*Incidently, the icons above are also a neat way of displaying icons in CSS instead of what would usually be image pngs or gifs. It’s a Font Awesome application in which you call a font awesome @fontface family in your CSS style sheets and then control font size, font weight, colour and all that good stuff. My pal Eesur has a great article about it here.

CSS Mask Techniques – Webkit

*These effects are made for webkit browsers so view this post in Safari or Google Chrome.

So I love texture and grungy effects. Usually when you want to apply that kind of stuff to web fonts & text, you have to make the text an image and upload it. But as much as possible you want selectable text on your websites – for accessibility, for visibility, so people can copy and paste it if needed. As CSS develops and browser support improves, it’s becoming possible to do more with selectable text. So you can use masks in your css files to add cool effects. It seems to be easiest in webkit browsers such as Safari & Chrome. As always, Internet Explorer is shit. Mozilla is ok but less flexible than webkit – for instance it doesn’t have a -webkit-mask-box-image equivalent and doesn’t support text gradients. But in webkit…

Continue reading…

Create a Cracked Face Effect

Inspired by the disturbing posters for last year’s film Black Swan, starring Natalie Portman, I decided to ‘crack’ the cracked face technique created in Photoshop. Here’s the tutorial.

black swan

Continue reading…

Live Trace Tool – Illustrator

I’ve been experimenting with bringing my pen and ink illustrations into Adobe Illustrator and using the live trace function to create outlines so I have a vectored image to work with and manipulate. Here’s an Illustrator tutorial about the topic.

live trace tool

I’m going to write a series of posts on this topic as I experiment with the technique and see what I can use it for. In this case, I’m using a sketch I did for a graphic novel idea about Chet Baker.

Continue reading…



Copyright © 2011. All rights reserved.

RSS Feed.