It Came From The Sea

It Came From The Sea

Created this concept art for my upcoming HL2 Mod, Took around 2 hours.

Posted in Art, Graphic Design | Leave a comment

Dreaming

New Graphic Design

Created this using Photoshop, took around 4 hours. I used a new technique to cutout the images, using the mask Refine Edge tool. It is really powerful and allowed me to cut stuff out much quicker, and look a lot better.

Here is the source image I started with:
Original Photo for Dreaming

I cropped my wife out of the image, and then post-processed it and added in a variety of textures. I got an image of a forest with a really awesome looking tree in it, and set to work cutting that out. I then cropped, and post-processed the tree image.

For the clouds I used a few pictures we had taken down in Moab, and using my new Mask method I was able to get some pretty good looking masks.

I then used a custom brush I made for a lot of the little dots and specks. And the final tweaks were done including color corrections adding in lens flares and glowing little bits, and of course the text.

Posted in Art | Leave a comment

Google Web Fonts – Greatest Web Resource I’ve Found This Year

Google Web Fonts is an amazing resource I stumbled onto recently. It is a free collection of Web Fonts. No more being stuck to the same old Arial, Georgia, Verdana, Times New Roman, and the ever famous “Trebuchet MS”.

These are web fonts that are supported in pretty much all browsers (including IE 7 and up).

Take a look at the gallery, I know I’ll be switching quite a few fonts on my site soon.

http://www.google.com/webfonts

Posted in Uncategorized | 1 Comment

Magento Image Slideshow

This is a guide on making a very simple, easy slideshow without having to include any additional javascript libraries in Magento.

This assumes you are familiar with the CMS editing features of Magento.

In this tutorial, I’m going to be adding a slideshow using the Content of the CMS Page, this would work just as well in a Static Block.

First step is to hide the WYSIWYG Editor, as we will be using the source directly.

<script type="text/javascript">

   var num_slides = 3;
   var slideDuration = 3000; //slide duration in ms

    start_slideshow(1, num_slides , slideDuration);

    function start_slideshow(start_frame, end_frame, delay) {
        setTimeout(switch_slides(start_frame,start_frame,end_frame, delay), delay);
    }

    function switch_slides(frame, start_frame, end_frame, delay) {
        return (function() {
            Effect.Fade('slide' + frame);
            if (frame == end_frame) { frame = start_frame; } else { frame = frame + 1; }
            setTimeout("Effect.Appear('slide" + frame + "');", 850);
            setTimeout(switch_slides(frame, start_frame, end_frame, delay), delay + 850);
        })
    }

</script>

The Javascript is pretty self explanatory, what it does it takes the number of slides, it finds elements with the IDs slide+FRAME NUMBER (i.e, slide1, slide2, slide3, etc)

THE HTML

The html is pretty easy, this will fade in any element (and all children of that element) that has an ID slide and the slide number,

<div id="slide1" class="slide">
<img src="{{media url="wysiwyg/Your-Slide.jpeg"}}">
</div>

When view it on the page, you should see the slideshow.

Any questions, please let me know.

Posted in Magento, PHP | Tagged , , | Leave a comment

White Porcelain

This was created in response to a wonderful video I found from Appliance Direct. White Porcelain.

Posted in Art, Graphic Design | Tagged , , | Leave a comment