Tumgik
trendsforweb-blog · 12 years
Photo
Tumblr media
Here you can find a tutorial to create really nice menu notification badges by using HTML5 data-attributes and some CSS.
0 notes
trendsforweb-blog · 12 years
Link
jQuery Fundamentals is designed to get you comfortable working through common problems. Try out the various interactive examples and improve your jQuery knowledge!
0 notes
trendsforweb-blog · 12 years
Link
You might already have seen this: cinemagraphs. It's more than an usual gif animation, cinemagraph is a product of a still photo with minor moving elements within it. With this technique pictures seem to be more realistic. The link above points to a simple tutorial using Cliplets to create your own cinemagraph.
Here you can find a gallery with more cinemagraphs.
0 notes
trendsforweb-blog · 12 years
Link
You like Twitter Bootstrap framework and Google Plus? Plusstrap might be your choice for front-end development! Plusstrap combines finest HTML5 and CSS3 framework with the style of Google Plus. Really cool!
0 notes
trendsforweb-blog · 12 years
Photo
Tumblr media
JustGage is a handy JavaScript plugin for generating and animating nice & clean gauges. It is based on Raphaël library for vector drawing, so it’s completely resolution independent and self-adjusting.
0 notes
trendsforweb-blog · 12 years
Link
Password Hashing is a way to convert a user-supplied password into a one-way derived token for storage. With the release of PHP 5.5 you will be able to create salted password hashes by using the new function: 
$hash = password_hash($password, PASSWORD_DEFAULT);
Additionally you can simply verify passwords by using
password_verify($password, $hash);
0 notes