Author Archives: Helge

Quick test of the font service from TypeKit.com

Typekit is commercial service that lets you embed non-standard fonts into HTML pages. It is relatively easy to use and takes care of all the licensing issues. So far, all good. Yesterday, I did a quick test of the service using the font LFT Etica Display.

I must say results were disappointing and showed far too much difference than what’s acceptable. It may have something to do with this specific font, like the font-hinting.

It’s sad to see that Opera is not supported at all, even though the latest versions have native support for font embedding.

All the tests were done on a Windows 7 PC.

Posted in CSS, Front-end, JavaScript, Uncategorized | 2 Comments

Hardware accelerated SVG in IE9

Microsoft has released an early preview of their upcoming IE9. Be sure to check out the new features at http://ie.microsoft.com/testdrive

One of the great news is the native support for the vector graphics language SVG.
SVG 1.1 became a W3C recommendation already back in 2003, so it’s about time we developers can start use this great technology.

Speedy performance

IE9 uses the GPU for graphic rendering through DirectX, and this gives good performance, currently beyond what all other browsers can perform.

Currently scores 28% in test

In this earliy build, only some SVG functions are implemented. This results in poor rendering of more advanced SVG files. See the SVG test chart where IE9 Preview 1 gets a score on 28% at http://www.codedread.com/svg-support.php
Read More »

Posted in Front-end, SVG | 2 Comments

Full 1080p HD on the web

1080pLast week Youtube announced they are adding support for viewing 1080p HD videos. (tips: add &fmt=37 to end of the links)

Today Adobe released Flash Player 10.1 beta that use the GPU for hardware decoding of H.264 video. Let’s hope this gets as good as it sounds.

1080p HD comes to Youtube

About Flash Player 10.1

Posted in Flash, Front-end | 1 Comment

How to link phone numbers

phone

This is the markup for making calls directly from a link when browsing from a mobile:
<a href=””tel:+4792800913””>Call (+47) 928 00 913 from your phone</a>

To send a SMS:
<a href=””sms:+4792800913””>Send a SMS</a>

Posted in Front-end, HTML5, Mobile | Leave a comment

Cufón – best webfont solution so far

cufon

While waiting for more browsers to support CSS3′s @font-face, the javascript method Cufón is an interesting alternative to the more commonly used sIFR method.

It’s pure Javascript, so it doesn’t require any plugins like sIFR does. And it has faster loading times than sIFR. Depending on the browser, it internally uses different techniques like SVG, Canvas and VML paths to draw the fonts. Luckily, web developers don’t need to know much about it, it just works!

Read More »

Posted in CSS, Front-end, JavaScript | Leave a comment