Today's Question:  What does your personal desk look like?        GIVE A SHOUT

 ALL


  Will HTML5 ever overtake native mobile apps?

Since now HTML5 has become a very hot topic. It can be used develop some highly functional and amazing applications on desktop and mobile devices. Also, there are many libraries which are using HTML5 to develop some native app like applications on iPhone and Android systems such as PhoneGap. Someone on Quora asked a question which many people are concerning about.: Will HTML5 ever overtake native mobile apps? It seems that the number of people who are agreeing with it equals to the number of people who disagreeing with it.Let's see the two most popular answers on Quora about this question.Aski...

16,848 0       MOBILE HTML5 NATIVE APP


  The header element in HTML 5

Currently HTML5 is exciting and anyone who want to builds web pages is looking forward to implementing HTML5 new tags into their sites. Definitely HTML5 tags are very rich in functions that make life much easier for both webmasters and end usersWithin the HTML5 specfication we can see that there have been a significant number of new tags added, one of these the <header> element is what we’ll be covering here. We will talk about when to use it, when not to use it.As we are used to seeing<div id=”header“>on a majority of sites that we visit, but now with ...

3,901 0       HTML5 HEADER


  Developing Game Audio with the Web Audio API

Caution: This article discusses APIs that are not yet fully standardizedand still in flux. Be cautious when using experimental APIs in your own projects.IntroductionAudio is a huge part of what makes multimedia experiences socompelling. If you've ever tried watching a movie with the sound off,you've probably noticed this.Games are no exception! My fondest video game memories are of the musicand sound effects. Now, in many cases nearly two decades after playingmy favorites, I still can't get Koji Kondo's Zeldacompositions and Matt Uelmen's atmospheric Diablosoundtrack out of my head. The same c...

3,192 0       HTML5 WEB AUDIO GAME AUDIO


  IDC report shows developers are losing ineterst in Android development

IDC's latest report shows that: the development interest in Android Phones and Android iPad  has been dropping steadily. 1869 developers participated in this survey.In this quarter, the development interest in Android phone applications fell by 4.7%, down to 78.6%; the development interest in Android iPad applications fell by 2.2%, down to 65.9%. Although the survey result may not be so accurate, it still shows a trend : Although sales of Android devices is growing, it is still unable to retain the heart of developers. Developers' interest in Android continued to decline over the pas...

4,350 1       ANDROID HTML5 IDC DEVELOPEMNT INTEREST


  Who Uses PhoneGap/Apache Cordova?

The HTML5 Microzone is presented by DZone and Microsoft to bring you the most interesting and relevant content on emerging web standards.  Experience all that the HTML5 Microzone has to offer on our homepage and check out the cutting edge web development tutorials on Script Junkie, Build My Pinned Site, and the HTML5 DevCenter. I see questions and comments all the time with the general sentiment “it looks nice, but who really uses PhoneGap/Apache Cordova?”. There is no way to have a finite list of everyone who uses it, but the general answer is ...

5,182 0       APACHE HTML5 APP PHONEGAP


  A New Experimental Feature: scoped stylesheets

Chromium recently implemented a new feature from HTML5: scoped stylesheets, aka. <style scoped>. A web author can limit style rules to only apply to a part of a page by setting the ‘scoped’ attribute on a <style> element that is the direct child of the root element of the subtree you want the styles to be applied to. This limits the styles to affect just the element that is the parent of the <style> element and all of its descendants. Example Here’s a simple document that uses standard styling:<html><body> <div>a div! <span>a span!...

2,297 0       HTML5 STYLE DRAW USE CASE


  HTML5 photo taking and uploading app implementation

Underthe support of HTML5 standard, Building Web App to take photos is now possible.I will elaborate on how to take photos using Web App, display them on the pageand upload them to the server.1.     VideostreamHTML5 TheMedia Capture API provides the programmable  access to video camera on phones, users canuse the getUserMedia() method to get the video stream provided by video camera.What we need to do is to add a HTML <video> tag and make the videostream from the video camera as the input to the <video> tag.  (Please note currently only Chrome and...

24,142 1       HTML5 IMPLEMENTATION PHOTO TAKING MEDIA CAPTURE API


  A JS1K competition demo for 2012

JS1K is a website which hosts some competitions to attract geeks from the world to create  JS apps which are less than 1K (1024 bytes). The object of this competition is to create a cool JavaScript "application" no larger than 1k. Starting out as a joke, the first version ended with a serious amount of submissions, prizes and quality.Recently, I revised a previous project of mine and compressed it to 1018 bytes and submitted it. It is an analog clock. The code is shown below:w=c.width;h=c.height;x=w/2;y=h/2;r=60;o=window;function D(){M=Math;p=M.PI;W="#FFF";n=new Date();h=n.getHours()%12;m...

4,234 0       HTML5 COMPETITION JS1K ANALOG CLOCK LOVE