» tagged pages
» logout

sorted by: recent | see : popular
Content Tagged with Safari + html

And the fastest browser is... | The Open Road - The Business and Politics of Open Source by Matt Asay - CNET News.com

Weak developers write code that limps on anything but Windows. Great developers write code that ports well to diverse platforms.

Zimbra: del.icio.us tag/zimbra

XRAY :: for web developers

A bookmarklet for Internet Explorer 6+, and Webkit and Mozilla based browsers (including Safari, Firefox, Camino or Mozilla). Use it to see the box model for any element on any web page.

Firefox: del.icio.us/tag/firefox

セレクタ(selector) CSS辞典

CSS selectors and browser compatibility

Firefox: del.icio.us/tag/firefox

John Resig - HTML5 Shiv: Utiliser des tags inconnus dans MSIE

<script>document.createElement("blah")</script> Rem: pas de solution pour Firefox

Firefox: del.icio.us/tag/firefox

Web Inspector Update

WebKit now supports the HTML5 SQL storage API, and the Inspector has full support for this new feature. You can execute SQL queries right in the Inspector and see the results live, or browse through all the databases and tables a website uses.

Firefox: del.icio.us/tag/firefox

ちょっとしたメモ - 今どきのXHTMLメディアタイプ

document.writeが使えなくなったり、HTMLDocumentインターフェースのメソッドが使えなくなるとか、NSを意識しなきゃとか。 application/xhtml+xml にした際の変更点は多いなぁ。

W3C: Del.icio.us W3C Tags

ちょっとしたメモ - 今どきのXHTMLメディアタイプ

document.writeが使えなくなったり、HTMLDocumentインターフェースのメソッドが使えなくなるとか、NSを意識しなきゃとか。 application/xhtml+xml にした際の変更点は多いなぁ。

Firefox: del.icio.us/tag/firefox

HTML5 Media Support: video and audio tags and scriptability

WebKit keeps on trucking and has added support for the HTML 5 media tags such as <video> and <audio>.

You can add video to a page as easily as:

HTML:
  1.  
  2. <video src="sample.mov" autoplay></video>
  3.  

That is a lot cleaner than the mess of embed/object/JavaScript wrappers that we have today. Also, there is nice scripting support so you can play/pause a video:

HTML:
  1.  
  2. function playPause() {
  3.   var myVideo = document.getElementsByTagName('video')[0];
  4.   if (myVideo.paused)
  5.     myVideo.play();
  6.   else
  7.     myVideo.pause();
  8. }
  9. </script>
  10. <input type=button onclick="playPause()" value="Play/Pause"/>
  11.  

You can also tie into events:

JAVASCRIPT:
  1.  
  2. myVideo.addEventListener('ended', function () {
  3.   alert('video playback finished')
  4. } );
  5.  

and programatically do your thing:

JAVASCRIPT:
  1.  
  2. new Audio("song.mp3").play();
  3.  

One key issue has always been the codec game and royalties to mpeg.

Ajax: Ajaxian

The WebKit Open Source Project

"WebKit is an open source web browser engine. WebKit is also the name of the Mac OS X system framework version of the engine that's used by Safari, Dashboard, Mail, and many other OS X applications."

opensource: del.icio.us tag/opensource

Page 1 | Next >>