Daily Inspiration #1287

Daily Inspiration #1287

This post is part of our daily series of posts showing the most inspiring images selected by some of the Abduzeedo’s writers and users. If you want to participate and share your graphic design inspiration, You can submit your images and inspiration to RAWZ via http://raw.abduzeedo.com and don’t forget to send your Abduzeedo username; or via Twitter sending to http://twitter.com/abduzeedo.

Do you want to see all images from all Daily Inspirations? Check out http://daily.abduzeedo.com

010379

Digital art selected for the Daily Inspiration #1287

3mmi-design

Digital art selected for the Daily Inspiration #1287

Alberto G. (Olloestudio)

Digital art selected for the Daily Inspiration #1287

Alisson Rocha

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

artandcrime

Digital art selected for the Daily Inspiration #1287

bellones

Digital art selected for the Daily Inspiration #1287

chrisdelo9032

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

Claudio Castellano

Digital art selected for the Daily Inspiration #1287

cuded

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

DAHALAB

Digital art selected for the Daily Inspiration #1287

Dalai Karma

Digital art selected for the Daily Inspiration #1287

daniel Ayala

Digital art selected for the Daily Inspiration #1287

Daniel Manzan

Digital art selected for the Daily Inspiration #1287

eighty-eight-creative

Digital art selected for the Daily Inspiration #1287

equivalent-art

Digital art selected for the Daily Inspiration #1287

excellent-mediocrity

Digital art selected for the Daily Inspiration #1287

feppa

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

FKSD

Digital art selected for the Daily Inspiration #1287

foryouyouyou

Digital art selected for the Daily Inspiration #1287

frameless

Digital art selected for the Daily Inspiration #1287

Franco Mathson

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

gencept

Digital art selected for the Daily Inspiration #1287

getaloadageo

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

giu-lia

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

hekmek

Digital art selected for the Daily Inspiration #1287

ivkiona

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

iwantogethigh

Digital art selected for the Daily Inspiration #1287

ixnivek

Digital art selected for the Daily Inspiration #1287

josephnicklo

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

joshjtaylor

Digital art selected for the Daily Inspiration #1287

kisielewska

Digital art selected for the Daily Inspiration #1287

koningstuff

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

lait-noir

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

Leroy Filon

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

luisbonadio

Digital art selected for the Daily Inspiration #1287

Lukasz

Digital art selected for the Daily Inspiration #1287

madridportfolio

Digital art selected for the Daily Inspiration #1287

maheshartist

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

Maik Bolbeth

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

MAILLET

Digital art selected for the Daily Inspiration #1287

Mike Chliounakis

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

missk

Digital art selected for the Daily Inspiration #1287

pblogom

Digital art selected for the Daily Inspiration #1287

phantomworld

Digital art selected for the Daily Inspiration #1287

playwithdeads

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

Quentin Chapon

Digital art selected for the Daily Inspiration #1287

Rodrigo Casteller Vicenti

Digital art selected for the Daily Inspiration #1287

thaeger

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

trickramirez18

Digital art selected for the Daily Inspiration #1287

Vlad Kanchev

Digital art selected for the Daily Inspiration #1287

w7.

Digital art selected for the Daily Inspiration #1287

WhatAnART

Digital art selected for the Daily Inspiration #1287

Yiris Hallal

Digital art selected for the Daily Inspiration #1287

Zach Green

Digital art selected for the Daily Inspiration #1287

zitoslama

Digital art selected for the Daily Inspiration #1287

Digital art selected for the Daily Inspiration #1287

Posted in Blog | Comments Off on Daily Inspiration #1287

jqMobi rolls out support for IE10

ThumbThere has been much cross-over between web development and application development in recent years. The biggest trend being the increase in web-based applications.

Whilst many would argue that it’s the rise of the cloud, and of faster internet connections, that have made this possible; it’s actually the rise of the mobile web that has made it desirable.

Coding a web application to run smoothly on a mobile device is a challenge for any developer. The focus is, understandably on Android and iOS, but this week jqMobi became the first Mobile HTML5 framework to directly target Windows Phone 8.

Built specifically for smartphones jqMobi is extremely light (just 5kb) and features jQuery-style selectors and plugins. It is used by tens of thousands of mobile web apps, and that number is only likely to increase now that IE is supported.

The problem, as it stands, is that whilst all browser manufacturers agree that standards-compliance is a good thing, they are all at different stages of implementation; each browser manufacturer prioritizes different aspects of the agreed specification.

A great example is multiple columns. Because of patchy support in some versions the CSS

column-count:2;

will only work in a few browsers. To increase the likelihood of the CSS being supported we have to include browser prefixes, so the code becomes:

-moz-column-count:2;
-webkit-column-count:2;
column-count:2;

(Opera have already implemented column-count on their desktop browser but not even a browser prefix version on their mobile offering.)

But because mobile frameworks need to reduce size, the tendency is to restrict support to just webkit (due to the prevalence of Chrome and Safari):

-webkit-column-count:2;

Because IE10 introduces support for column-count without the need to prepend a browser prefix the only addition required is the standards-compliant non-prefix version:

-webkit-column-count:2;
column-count:2;

This means support can be extended without heavy kb overheads, and brings the additional benefit of future-proofing the code. It’s the commitment of Microsoft to deliver a standards-compliant browser — yes I know, I had to pinch myself too — that has made this possible.

Microsoft’s IE10 browser delivers really good performance that is competitive with the best browsers we’ve seen on Android and iOS. So that means that developers who want to take advantage of jqMobi to deliver iOS, Android, Windows 8 and Windows Phone 8 apps can give their users an identically fantastic experience across all four device platforms. — Ian Maffett, jqMobi lead developer

The diversification away from Webkit and towards standard-compliance can only be a healthy thing and we expect other frameworks to follow the same route as jqMobi by focusing on working with IE10 in addition to Webkit in the near future. In the meantime, jqMobi looks well worth considering for your next project, and by getting ahead of the game they may well have won a few fans.

 

Have you tried jqMobi? How did you find it? Let us know in the comments below.

Featured image/thumbnail, open window image via Shutterstock

Fantastic Mac Photo Manipulation App Bundle – only $17!

Source


Posted in Blog | Comments Off on jqMobi rolls out support for IE10