Notepad Web Development

Feed icon

Posts Tagged ‘Sense Internet’

Personality types mini-app


[Click image to view application]

A mini-application created for Imperial Tobacco.

AS3 Flashing EQs



Created as part of Rizla UK’s 2010 Invisible Players pages.
(more…)

Save The DJ

View full in browser

(more…)

Rizla Suzuki Moto GP widget

Moto GP widget created for Rizla UK.
(more…)

Flash banner for AMF Bowling

Flash banner created for Sol Promotion offer at AMF Bowling. (more…)

Punk My Peg

http://apps.facebook.com/followalex/
(more…)

Analogue timezone clocks

Created for the dashboard as part of the Rizla International website. (more…)

Tweetlection

http://www.tweetlection.co.uk
(more…)

Dynamic resizing full bleed background image

This was a quick mock-up done in Flash CS3 for a pitch for a new site for Harrogate Ladies college. The background images rotate thorugh a slideshow and will dynamically resize as you change the size of your browser window. In order to see this working you will need to view the swf in it’s own window… here’s the link

The code for the resizing the image on resize is pretty straight forward, just don’t forget to add smoothing to your source images.

resizeHandler(null);

stage.scaleMode = StageScaleMode.NO_SCALE;
stage.align 	= StageAlign.TOP_LEFT;
stage.addEventListener(Event.RESIZE, resizeHandler);

function resizeHandler(e:Event):void {

	// get largest dimension scaling
	var w	= stage.stageWidth / 1022;
	var h	= stage.stageHeight / 687;

	var newWidth, newHeight;

	if ( w > h ) {
		newWidth	= stage.stageWidth;
		newHeight	= 687 * w;
	} else {
		newHeight	= stage.stageHeight;
		newWidth	= 1022 * h;
	}

	backgrounds.width 	= newWidth;
	backgrounds.height 	= newHeight;
}

Tweetcurve

HTML and CSS build for Tweetcurve website with a flash banner. (more…)

True Colours of Twitter

http://www.sense.co.uk/truecolorsoftwitter/
(more…)

Reskin for John Player trade site

HTML and CSS re-skin for new John Player trade site after logo redesign. (more…)

Starting work at Sense Internet

I had to write some cross-browser compatible HTML and CSS in order to seal the deal to work at Sense Internet as an Interface Developer. The page I built works in IE 5.5, 6, 7, 8, Firefox (Mac + PC), and Chrome (Mac + PC).

Download the Source | View the page

As well as HTML and CSS I’ll be working with the Sense Javascript framework which is object oriented and based upon Prototype. I’m also hoping to get started with some Actionscript 3.0 stuff as soon as possible.