HTML5
< Web
< Dev
< forresst
Get flash to fully experience Pearltrees
This week we’re going to finish up the portfolio slider on our homepage that we have already started. At this point, if you view your index.php file and scroll down to the secondary screen it should look something like this. We’re close, all we have to do now is plug in our jQuery elements and then add some CSS to make our secondary portfolio slider screen responsive.
We’re going to wrap up our tutorial on how to develop a responsive website this week by making our secondary page, well, responsive. We created our large layout for the page in our last tutorial, but now we want to make it fluid so that it will display nicely across various platforms, ranging from tablets and mobile devices to PC’s. Let’s take a quick peak at what we’re working towards.
Email Share Email Share Like the article? Web developers are always looking for new ways to improve the speed and performance of the pages.
Modernizr is a JavaScript library that detects which HTML5 and CSS3 features your visitor’s browser supports. In detecting feature support, it allows developers to test for some of the new technologies and then provide fallbacks for browsers that do not support them. This is called feature detection
There are some great jQuery plugins . The better ones are adopted by thousands of web developers throughout the world. Unfortunately, the worse ones fail and disappear into obscurity. Here are some tips to ensure your plugins reach their full potential… 1. Don’t Break the Chain
Abstract HTML is the core language of the World Wide Web. The W3C publishes HTML5, which is the fifth major revision of HTML.
Compatibilité: Introduction L'API Web SQL permet de créer une base de donnée, ajouter une table, etc. enfin bref d'avoir une base de données utilisable via le navigateur. Le navigateur fournissant la gestion de base de données, elle peut être accessible en mode "offline" (en mode deconnecté). Ouvrir une connection Pour ouvrir une connection vers la base de données, on exécute le script suivant: if(window.openDatabase){ db = openDatabase(nom_de_la_base_de_données (string) , version_de_la_base_de_données (string) , commentaire_de_la_base_de_données (string) , la_taille_estimé (entier) , callback (function) ); }