Learn web design is dedicated on sharing information about web design and development we share you learn.
Tuesday, January 31, 2012
Here's an Excellent HSL Color Picker
HSL Color Picker is a very good web based HSL color picker created by none other than Brandon Mathis. HSL stands for (Hue, Saturation, Luminosity) and it allows us to describe some meaningful relationships between some very colors. Give this a little bit of a brownish color, hsl(36, 73%, 10%),it is very clear that if we are able to desaturate 40 steps and lighten out a little bit for 70 steps we get an HSL of (36, 33%, 80%), a very likely cream color.
Have a look at that in a hex decimals in, #2C1D07 to #DDCFBB, or in rgb, rgb(44, 29, 7) to rgb(221, 207, 187), and the relationship between colors isn’t evident in a very meaningful way.
Here's your 10 Creative And Uniquely Designed Navigation Menus
It is a collection of a very well-designed navigation bar that leaves out a good impression on first-time visitors. Here’s a sample list of a very good navigation menu designs for an inspiration.
Small Stone Recordings – Here’s a perfectly good example of incorporating your site’s theme effor with the cool design. This immediately gives your site’s visitors an excellent idea of what your site and business is all about.
Loodo – Now here’s a very good design that would appeal to anyone who enjoys playing traditional board games.
If you want to have the complete 10 Creative And Uniquely Designed Navigation Menus you can continue reading on clicking
on the title above ....
How to do a Tumblr Importer for WordPress
This new WordPress plugin called Tumblr Importer makes moving your Tumblr blog content to your self-hosted WordPress blog an easy feat. Since Tumblr is known for its multimedia posts, this plugin also keeps your audio, images and video intact.
Plugin features:
- Imports posts, pages and drafts
- It handles post formats correctly
- Duplicate checking
- Media sideloading for audio, video and image posts
- WP-Cron based background importing: you can start it up and return later to check its progress.
How to Reduce Spam in WordPress with .htaccess
Here’s a very useful snippet from allguru.net that helps reduce spam in WordPress. Blocking spam at the .htaccess level is more efficient and effective than merely using plugins, and you may want to try this out.
It’ll help if make a backup copy of your .htaccess file first. Once you’re done, simply paste this code into your .htaccess file located in the root directory of your WordPress install.
How to Create a jQuery Star Comment Rating
The commenting system just became more fun for users! Created by eligeske, this animated jQuery tutorials star commenting system is a great way to rate your posts. Add this to your website and see your visitor activity increase.
Download the ZIP FILE. .
Sunday, January 29, 2012
Touch-Gallery - Fullscreen Photo Gallery for Touch-Devices
Touch Gallery is an open source full-screen photo gallery for touch devices that brings the look and feel of native photo viewing applications to your mobile browser.
dualSlider - Two Sided jQuery Content Slider
With this unique dualSlider it is a very simple tool called jQuery tutorials content slider plugin that will easily allow us to display out any HTML output. It has a two-sided interface which both of them slides sequentially and while one side displays the slide, other can present some extra information on the image or video about it. With this slider it is very useful added feature for putting up a video or picture where you can slide through each of the contents.
h5Validate - HTML5 Form Validation For jQuery
h5Validate is jQuery plugin that understands HTML5 forms and knows how to validate them, even in browsers that don’t yet support HTML5. In browsers that do support HTML5, h5Validate adds some much-needed features, such as the ability to customize the user interface when an input fails validation.
This HTML5 form validation is support for various validation rule such as required attribute and pattern attribute. Sometimes, you’ll want to re-use the same validation pattern for several elements on a page.
25 Professional High-Quality Free Fonts | blogfreakz.com
25 Professional High-Quality Free Fonts
Finding high-quality fonts is quite hard since there are tons out there that are mostly ‘fillers’. But the following list of free professional fonts is excellent for graphic art and web design use, and I hope you find it helpful.
For the complete list of the 25 professional high quality free fonts please click on the title
Auto-Convert Text To Different Cases Using jQuery
jQuery By Example’s author created this neat plugin for automatically converting your text to upper, lower, title, and pascal case. The auto feature is just half of it, the other half is that it converts your text in REAL-TIME!
Check out the live demo here or take a look at its code here.
Thursday, January 26, 2012
How to Sideways – Fullscreen Image Gallery With jQuery | blogfreakz.com
Mosaic - Sliding Boxes and Captions jQuery Plugin | blogfreakz.com
Mosaic is plugin for jQuery that allow us to automatically generates sliding boxes & captions. Mosaic Allows slide & fade animations with custom directions and reloads images within boxes.
How to Skitter - Feature Rich jQuery Slideshow Plugin With 22 Classy Animations | blogfreakz.com
Skitter is a feature rich jQuery slideshow plugin that comes with 22 unique and smooth animations. It has various transition options for customization like speed, interval and animation effects. Skitter offers pagination and navigation controls that allow users to drive the slideshow as they like.
How to Schizo Octopus - Free One Page Portfolio Website Template | blogfreakz.com
Schizo Octopust is free One Page Portfolio Website Template. This theme is a fixed layout one page portfolio template with two columns. All of the information within the main content area is nested within a div with an id of “container”.
The Wall - Draggable & Endless Content Galleries For MooTools | blogfreakz.com
With The Wall you decide the position of your contents punctually. Every plug is ready to hold your contents, pictures, videos, texts, everything. You are the one who chooses how to show your information.
How to Create a Flexible jQuery Data Heat Map | blogfreakz.com
Wednesday, January 25, 2012
Create A good looking Grayscale Image Hover In HTML5 | blogfreakz.com
Create A Grayscale Image Hover In HTML5
It used to be that shifting an image from grayscale to colored and vice-versa as you hover over it required 2 copies of the said image — one in grayscale and the other in color. But thanks to Darcy Clarke for the JavaScript & HTML 5 grayscale in this tutorial, this feat is easier and faster because the grayscale image is generated from the original source.
Click on the above image for the demo.
Steps:
- Get a copy of jquery.js
- Paste the code below onto your web page. What the code will do is look for the target images (.item img) and then generate a grayscale version.
How to create A basic CSS Circles
10 Beneficial Typography eBooks for Design
For more of the awesome list of Typography you can check out the site called Web Design it got a lot of cool resources for Website design.
Save Changes In contenteditable As JSON With AJAX
document.addEventListener('keydown', function (event) {
var esc = event.which == 27,
nl = event.which == 13,
el = event.target,
input = el.nodeName != 'INPUT'
&& el.nodeName != 'TEXTAREA',
data = {};
if (input) {
if (esc) {
// restore state
document.execCommand('undo');
el.blur();
} else if (nl) {
// save
data[el.getAttribute('data-name')] = el.innerHTML;
// we could send an ajax request to
update the field
/*
$.ajax({
url:
window.location.toString(),
data: data,
type: 'post'
});
*/
log(JSON.stringify(data));
el.blur();
event.preventDefault();
}
}
}, true);
function log(s) {
document.getElementById('debug').innerHTML = 'value changed to: ' + s;
}
|