Here are 10 amazing free bootstrap template. The Bootstrap Themes gives away high quality bootstrap themes for free. Enjoy !!
Monday, December 15, 2014
Business Card Design: Creative Templates
The company’s or organization’s name or logo. Despite such simplicity,
the design can still be creatively done through careful arrangements of
wordings and logo. If your business card is plain and dull, it can only
tell so much of your company’s image. Here’s a list of a collection. These design proposal were made for the competition organized by JW Construction on 99designs.it . And thanks for the Biscuiteerblog for creative business card design.
Business Card Design for ZX Securities
Business Card Design for Waypoint
Business Card Design for VAS
Business Card Design for Swissistent
Business Card Design for Moxy Media
Business Card Design for Offspring Solutions
Business Card for Kurth Glas & Spiegel AG
Business Card Design for Nes Security Solutions
Business Card for Guy Calaf
Business Card for JW Construction
Monday, December 8, 2014
Browser Detection with Jquery
In this post, find JavaScript/jQuery code to detect various type and version of web browser. Below jQuery code gives you an idea about $.browser property.
For Chrome and Safari
if ($.browser.safari) {
// code goes here
}
Select Safari 3
if ($.browser.safari && (navigator.appVersion.indexOf('3.') != -1)) {
// code goes here
}
Select Safari 4
if ($.browser.safari && (navigator.appVersion.indexOf('4.') != -1)) {
// code goes here
}
Select Chrome 1
if ($.browser.safari && (navigator.appVersion.indexOf('1.') != -1)) {
// code goes here
}
Select Chrome 3
if ($.browser.safari && (navigator.appVersion.indexOf('3.') != -1)) {
// code goes here
}
Select Chrome 13
if ($.browser.safari && (navigator.appVersion.indexOf('13.') != -1)) {
// code goes here
}
Select Chrome 16
if ($.browser.safari && (navigator.appVersion.indexOf('16.') != -1)) {
// code goes here
}
For Firefox
if ($.browser.mozilla) {
// code goes here
}
Select Firefox 1.5.x to 2.x
if ($.browser.mozilla && $.browser.version.substr(0, 3) == '1.8') {
// code goes here
}
Select Firefox under 3.x
if ($.browser.mozilla && $.browser.version < '1.9') {
// code goes here
}
Select Firefox 3.0.x and above
if ($.browser.mozilla && $.browser.version.substr(0, 3) == '1.9') {
// code goes here
}
Select just Firefox 2.0.x
if ($.browser.mozilla && $.browser.version == '1.8.1') {
// code goes here
}
Select just Firefox 3.0.x
if ($.browser.mozilla && $.browser.version == '1.9') {
// code goes here.
}
Select just Firefox 3.5.x
if ($.browser.mozilla && $.browser.version == '1.9.1') {
// code goes here
}
Select just Firefox 3.6.x
if ($.browser.mozilla && $.browser.version == '1.9.2') {
// code goes here
}
Select just Firefox 7.x
if ($.browser.mozilla && $.browser.version.substr(0, 1) == '7') {
// code goes here
}
Select just Firefox 14.x
if ($.browser.mozilla && $.browser.version.substr(0, 2) == '14') {
// code goes here
}
// code goes here.
}
Select Opera 9.5 and above
if ($.browser.opera && $.browser.version >= '9.5') {
// code goes here
}
Select just Opera 9.5
if ($.browser.opera && $.browser.version == '9.5') {
// code goes here
}
Select just Opera 10
if ($.browser.opera && $.browser.version == '9.8') {
// code goes here
}
// code goes here
}
Select Internet Explorer above 6
if ($.browser.msie && $.browser.version > 6) {
// code goes here
}
Select Internet Explorer 7 and below
if ($.browser.msie && $.browser.version <= 7) {
// code goes here
}
Select just Internet Explorer 6
if ($.browser.msie && $.browser.version == '6.0') {
// code goes here
}
Select just Internet Explorer 7
if ($.browser.msie && $.browser.version == '7.0') {
// code goes here.
}
Select just Internet Explorer 8
if ($.browser.msie && $.browser.version == '8.0') {
// code goes here
}
Select just Internet Explorer 9
if ($.browser.msie && $.browser.version == '9.0') {
// code goes here.
}
Note: release of jQuery 1.9 $.browser feature was removed. But to support legacy code, they have released jQuery Migrate plugin to detect deprecated and removed features, or to restore old features for those sticky situations where you need old code to run with new jQuery.
}
Select Firefox 1.5.x to 2.x
if ($.browser.mozilla && $.browser.version.substr(0, 3) == '1.8') {
// code goes here
}
Select Firefox under 3.x
if ($.browser.mozilla && $.browser.version < '1.9') {
// code goes here
}
Select Firefox 3.0.x and above
if ($.browser.mozilla && $.browser.version.substr(0, 3) == '1.9') {
// code goes here
}
Select just Firefox 2.0.x
if ($.browser.mozilla && $.browser.version == '1.8.1') {
// code goes here
}
Select just Firefox 3.0.x
if ($.browser.mozilla && $.browser.version == '1.9') {
// code goes here.
}
Select just Firefox 3.5.x
if ($.browser.mozilla && $.browser.version == '1.9.1') {
// code goes here
}
Select just Firefox 3.6.x
if ($.browser.mozilla && $.browser.version == '1.9.2') {
// code goes here
}
Select just Firefox 7.x
if ($.browser.mozilla && $.browser.version.substr(0, 1) == '7') {
// code goes here
}
Select just Firefox 14.x
if ($.browser.mozilla && $.browser.version.substr(0, 2) == '14') {
// code goes here
}
For Opera
if ($.browser.opera) {// code goes here.
}
Select Opera 9.5 and above
if ($.browser.opera && $.browser.version >= '9.5') {
// code goes here
}
Select just Opera 9.5
if ($.browser.opera && $.browser.version == '9.5') {
// code goes here
}
Select just Opera 10
if ($.browser.opera && $.browser.version == '9.8') {
// code goes here
}
For Internet Explorer (IE sucks)
if ($.browser.msie) {// code goes here
}
Select Internet Explorer above 6
if ($.browser.msie && $.browser.version > 6) {
// code goes here
}
Select Internet Explorer 7 and below
if ($.browser.msie && $.browser.version <= 7) {
// code goes here
}
Select just Internet Explorer 6
if ($.browser.msie && $.browser.version == '6.0') {
// code goes here
}
Select just Internet Explorer 7
if ($.browser.msie && $.browser.version == '7.0') {
// code goes here.
}
Select just Internet Explorer 8
if ($.browser.msie && $.browser.version == '8.0') {
// code goes here
}
Select just Internet Explorer 9
if ($.browser.msie && $.browser.version == '9.0') {
// code goes here.
}
Note: release of jQuery 1.9 $.browser feature was removed. But to support legacy code, they have released jQuery Migrate plugin to detect deprecated and removed features, or to restore old features for those sticky situations where you need old code to run with new jQuery.
Thursday, November 27, 2014
Placeholder attribute for IE Hack
HTML5 introduced the "placeholder" attribute on input elements, which allows to display a greyed-out default text. But Sadly the Internet Explorer, including IE 9 does not support it. I got a solution. Just try this.
if(navigator.appVersion.match(/MSIE [\d.]+/)){
var placeholder = $('input[type=text]').attr('placeholder');
var placeholderText = placeholder;
$('input[type=text]').val(placeholderText);
$('input[type=text]').blur(function(){
$(this).val() == '' ? $(this).val(placeholderText) : false;
});
$('input[type=text]').focus(function(){
$(this).val() == placeholderText ? $(this).val('') : false;
});
}
Thursday, April 24, 2014
Specifying a Webpage Icon for Web Clip.
The apple-touch-icon.png is a file used for a web page icon on the Apple iPhone, iPod Touch, and iPad. When someone bookmarks your web page or adds your web page to their home screen this icon is used. If this file is not found these Apple products will use the screen shot of the web page, which often looks like no more than a white square.
This file should be saved as a .png, have dimensions of 76 x 76 Or, 120 x 120 Or, 152 x152
To specify multiple icons for different device resolutions. For example, support both iPhone and iPad devices. Add a sizes attribute to each link element as follows:
<link rel="apple-touch-icon" href="touch-icon-iphone.png"> <link rel="apple-touch-icon" sizes="76x76" href="touch-icon-ipad.png"> <link rel="apple-touch-icon" sizes="120x120" href="touch-icon-iphone-retina.png"> <link rel="apple-touch-icon" sizes="152x152" href="touch-icon-ipad-retina.png">
for more detail on Apple site.
Tuesday, April 22, 2014
Color Combination Tools
Below we’ve compiled a list containing 20 Color Combination Tools for Designers. You can use this list to chose the tool that better fits your needs or that you’re most comfortable using.
The web-hosted application for generating color themes that can inspire any project. No matter what you’re creating, with Kuler you can experiment quickly with color variations and browse thousands of themes from the Kuler community.
Color Scheme Designer has been around for some time and was recently re-written and designed. It currently has great color space conversions, a preview pane, enhanced scheme creation, and a permanent URL of the schemes you create. It’s almost as if it were a hosting site for color schemes.
This application allows you to experiment with various color combinations, review your colors accessibility, and create color palettes.
Infohound Color Schemer helps you find and test color schemes for whatever the reason may be. Features included allow you to configure the saturation and brightness, set the value for hue, and have your colors automatically matched for you.
This tool lets you check the foreground and background of color combinations and gives you the option to determine whether the color variation is suitable for individuals with vision impairments.
Toucan allows you to choose up to 20 colors per palette using color association rules or an uploaded image, collaborate with other users, and import images from Flickr, Picasa, and Facebook.
The Hex Color Scheme Generator is a great tool to use if you want to create a beautiful and logical color scheme. It acts as an “advisor” for colors. You simply tell it which colors you’d like to use, and the app will generate the best results that match.
Pictaculous lets you upload your image and analyze its colors. This is ideal for the designer who creates several graphics at a time and would like to distinguish the looks without having to manually choose the best combining colors every time.
This website gives you the option to generate limitless color combinations and schemes. If you already know at least one of the colors you plan on using, this site will take care of the rest. This is good for testing out colors in your code when you’re not sure what they are. I personally use this app on a regular basis.
Daily Color Scheme serves its users a new color scheme every single day of the year. This can help you discover new color combinations that you hadn’t thought of before, also a great source for color inspiration.
This is an advanced color palette tool that lets you create beautiful color schemes and custom themes. To begin working with colors you’ll have a scratch pad at your disposal. Before you begin using this app, make sure you try the scratch pad, it’s a feature that allows you to store all of the colors you’re working with for later use. You’ll also have a photo tool to extract colors, and an advanced color picker as well as a color theory wheel to give you the right type of inspiration.
ColorExplorer takes working with digital colors to the next level. You can get right down to work with a colorful toolbox that lets you quickly and easily create, manage, and explore several color palettes.
Kolur is a simple yet, effective color application that lets you browse color palettes. The color combinations and schemes displayed within their gallery go further than the standard 3 color “rule”, it’s unique and leaves you open with several possibilities per combination.
Color Hunter allows you to upload your images and view the different colors that it contains. You can also browse through their current color schemes.
GrayBit is an online testing tool created to convert an entire web-page into the grey-scale so that you’re able to visually recognize certain contrasts between different elements in your layout.
ColorZilla was designed for Firefox, it gives you an advanced eyedropper, a helpful color picker, a useful palette viewer and other tools all within the reach of your browser.
ColourMod was originally released as a web-based DHTML Dynamic Colour Picker. With the advancement and popularity of the Mac interface, ColourMod can now be found in your Dock once you’ve downloaded it. You’ll be able to examine colors on your desktop, websites, graphics, applications, and more!
ColourGrab lets you type in the URL of any image online and this application will tell which are the most useful and best used colors for that specific image. You can link to your project images that are hosted online and veiw which are the best and most used colors within the images. Great for custom logo design.
ColorMunki is an all-in-one color app that gives you complete color control of your color creation tools. You’re able to find, choose, and compare several different colors.
The Sessions educational Color Calculator is an interactive color wheel that allows any designer to select RGB, or CMYK colors for the creation of useful colors schemes. Sessions also claims to have the fastest color tool on the web.
Test it out and lets us know what you liked and disliked about this app and any of the others as well!
Kuler
The web-hosted application for generating color themes that can inspire any project. No matter what you’re creating, with Kuler you can experiment quickly with color variations and browse thousands of themes from the Kuler community.
Color Scheme Designer
Color Scheme Designer has been around for some time and was recently re-written and designed. It currently has great color space conversions, a preview pane, enhanced scheme creation, and a permanent URL of the schemes you create. It’s almost as if it were a hosting site for color schemes.
Contrast-A: Find Accessible Color Combinations
This application allows you to experiment with various color combinations, review your colors accessibility, and create color palettes.
Infohound Color Schemer
Infohound Color Schemer helps you find and test color schemes for whatever the reason may be. Features included allow you to configure the saturation and brightness, set the value for hue, and have your colors automatically matched for you.
Check My Color
This tool lets you check the foreground and background of color combinations and gives you the option to determine whether the color variation is suitable for individuals with vision impairments.
Toucan Color Palettes
Toucan allows you to choose up to 20 colors per palette using color association rules or an uploaded image, collaborate with other users, and import images from Flickr, Picasa, and Facebook.
Hex Color Scheme Generator
The Hex Color Scheme Generator is a great tool to use if you want to create a beautiful and logical color scheme. It acts as an “advisor” for colors. You simply tell it which colors you’d like to use, and the app will generate the best results that match.
Pictaculous
Pictaculous lets you upload your image and analyze its colors. This is ideal for the designer who creates several graphics at a time and would like to distinguish the looks without having to manually choose the best combining colors every time.
Color Combinations and Color Schemes
This website gives you the option to generate limitless color combinations and schemes. If you already know at least one of the colors you plan on using, this site will take care of the rest. This is good for testing out colors in your code when you’re not sure what they are. I personally use this app on a regular basis.
Daily Colorscheme
Daily Color Scheme serves its users a new color scheme every single day of the year. This can help you discover new color combinations that you hadn’t thought of before, also a great source for color inspiration.
Color Palette Software
This is an advanced color palette tool that lets you create beautiful color schemes and custom themes. To begin working with colors you’ll have a scratch pad at your disposal. Before you begin using this app, make sure you try the scratch pad, it’s a feature that allows you to store all of the colors you’re working with for later use. You’ll also have a photo tool to extract colors, and an advanced color picker as well as a color theory wheel to give you the right type of inspiration.
ColorExplorer
ColorExplorer takes working with digital colors to the next level. You can get right down to work with a colorful toolbox that lets you quickly and easily create, manage, and explore several color palettes.
Kolur
Kolur is a simple yet, effective color application that lets you browse color palettes. The color combinations and schemes displayed within their gallery go further than the standard 3 color “rule”, it’s unique and leaves you open with several possibilities per combination.
Color Hunter
Color Hunter allows you to upload your images and view the different colors that it contains. You can also browse through their current color schemes.
Gray Bit
GrayBit is an online testing tool created to convert an entire web-page into the grey-scale so that you’re able to visually recognize certain contrasts between different elements in your layout.
ColorZilla
ColorZilla was designed for Firefox, it gives you an advanced eyedropper, a helpful color picker, a useful palette viewer and other tools all within the reach of your browser.
ColourMod
ColourMod was originally released as a web-based DHTML Dynamic Colour Picker. With the advancement and popularity of the Mac interface, ColourMod can now be found in your Dock once you’ve downloaded it. You’ll be able to examine colors on your desktop, websites, graphics, applications, and more!
Color Grab
ColourGrab lets you type in the URL of any image online and this application will tell which are the most useful and best used colors for that specific image. You can link to your project images that are hosted online and veiw which are the best and most used colors within the images. Great for custom logo design.
ColorMunki
ColorMunki is an all-in-one color app that gives you complete color control of your color creation tools. You’re able to find, choose, and compare several different colors.
Color Wheel Color Calculator
The Sessions educational Color Calculator is an interactive color wheel that allows any designer to select RGB, or CMYK colors for the creation of useful colors schemes. Sessions also claims to have the fastest color tool on the web.
Test it out and lets us know what you liked and disliked about this app and any of the others as well!
Wednesday, March 26, 2014
Fixed header/footer issue on iOS device
When you scroll the page and dismiss the keyboard while the page still scrolls, the header does not return to its fixed position. If you tap a link or button, the header shows up somewhere in the (vertical) middle of the screen and only returns to its fixed position after manually scrolling.
Solution:
if( /iPhone|iPod|iPad/i.test(navigator.userAgent) ) {
$(document).on('focus', 'input, textarea', function()
{
$('header').css("position", 'absolute');
$('footer').css("position", 'absolute');
});
$(document).on('blur', 'input, textarea', function()
{
$('header').css("position", 'fixed');
$('footer').css("position", 'fixed');
});
}
The above "unfixes" the header/footer while an input field is focused.
Thursday, March 13, 2014
CSS3 Media Query for IE7 and IE8
Normally IE5 to IE8 do not support CSS3 Media Query. But at least IE8 should support for CSS3 Media Query and that is very important for cross-browser responsive web design. Here I will tell you how you can solve the CSS3 Media Query issues for IE. This tutorial will helps you to create a dynamic resolution dependent layout with web standards in mind.
Today I got a great jQuery plugin Link name css3-mediaqueries. It is very easy to use.
How to use?
Download jQuery plugin form Here and include downloaded script just before </body> like<script src="js/css3-mediaqueries.js"></script>
Or you can use following way to include the script.
<!-- css3-mediaqueries.js for IE less than 9 -->
<!--[if lt IE 9]>
<script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
<![endif]-->
Then write the media query in style sheet and check it in IE. It will work nicely with IE8, IE7 Even more older version IE6 or IE5
Notes:
It doesn’t work on @import’ed stylesheets Write media query with following way@media screen and (min-width: 980px) {
/* CSS Document */
}
Wednesday, March 12, 2014
Typography Tools
Typetester
The Typetester is an online application for comparison of the fonts for the screen. Its primary role is to make web designer’s life easier. As the new fonts are bundled into operating systems, the list of the common fonts will be updated.CSS Type Set
Font Tester is a free online font comparison tool. It allows you to easily preview and compare different fonts side by side with various CSS font styles applied to them. It is very useful for web developers who are looking for just the right font/style/color to use in their pages.
Font Tester
Font Tester is a free online font comparison tool. dIt allows you to easily preview and compare different fonts side by side with various CSS font styles applied to them. It is very useful for web developers who are looking for just the right font/style/color to use in their pages.
CSS Code generator for text
A very simple and useful tool for generating CSS styles.
Serif Font Identification Guide
Serif Font Identification Guide is a very clever and useful visual font identification tool.
Identifont
Identifont has become the largest independent directory of digital fonts on the Internet. It provides a range of features to help you locate fonts or find information about fonts:
CSS-Typoset Matrix
Matrix to calculate the font size and line spacing in em and px
Referance : smashingapps
Subscribe to:
Posts (Atom)