All the API of HTML explained in a simple way. These are very useful during web applications development. Do note that Web SQL has been made part of the HTML 5 api.
Flash used to be the king of web animation, but now it’s been slowly abandoned because of the possible future ruler: a combination of HTML5, CSS3, andJavaScript. Even though Adobe is still strongly supporting Flash, it is also beginning to embrace the new alternative. The proof is Edge – the new multi-platform tool from Adobe …
CSS has introduced new transform properties. In this section we will learn one more new property known as “skew”. Skew property is usually used to give skewing effects in 3d. We will see an example which gives skew effect to an html element. Syntax for skew property is: transform:skew(30deg, 10deg); …
Cascading Style Sheets CSS is the key presentational technology that is used in website design. In this tutorial we will learn about the shadow effects, layering multiple shadows, text-shadow effects. CSS property “box-shadow” allows us to add an shadow effect to selected HTML element, whereas “text-shadow” allows us to add …
Here’s one more example in Html5 using CSS 3 which definitely proves that its fun to play with CSS. Following is an example of the text rotation using CSS property: For safari, chrome, etc: -webkit-transform: rotate(-30deg); For mozilla: -moz-transform: rotate(-30deg); For Opera: -o-transform: rotate(-30deg); For Linux: -khtml-transform: rotate(-30deg); For ie: …
In this part we will have a look through how to display text with rounded corners. Following is an example of the text with rounded corners using CSS property: For safari, chrome, etc: -webkit-border-top-left-radius: 50px; For mozilla: -moz-border-radius-topleft: 50px; For Opera: border-radius: 50px; For old Konqueror browsers: -khtml-border-radius: 50px; Code: …
A recent news from adobe states that they will no longer continue to develop flash software in the browser for new mobile configurations chipset, browser, OS version, etc. following the upcoming release of Flash Player 11.1. for Android and BlackBerry PlayBook It will however, provide “critical bug fixes & security …
On the 17th August 2011, Taiijas Infotech Pvt Ltd will be holding a FREE seminar on the Mobile and Web Technologies at Thakur College of Engineering, Kandivali, Mumbai. This is part of the introduction to the PHP and MySQL web development course at the same college. Dates will be announced tomorrow.
Drawing in HTML5 is basically using JavaScript to draw lines, figure,charts and to color in an area using set equations and functions. The best part is the end result will fool the user to think that its an image 🙂 All that is needed is a Canvas element, JavaScript knowledge(even …
We at Taiijas Infotech are constantly experimenting, researching and implementing inhouse. This is a small example which can be built in 20mins explaining how the drag and drop works in HTML5. Given below is an example of the drag and drop which can be very easily implemented using HTML5’s new …