background preloader

Links

Facebook Twitter

Make Your Mockup in Markup. We aren’t designing copies of web pages, we’re designing web pages. Andy Clarke, via Quotes on Design The old way I used to think the best place to design a website was in an image editor. I’d create a pixel-perfect PSD filled with generic content, send it off to the client, go through several rounds of revisions, and eventually create the markup. Does this process sound familiar? You’re not alone. That process is whack, yo! Recently, thanks in large part to the influence of design hero Dan Cederholm, I’ve come to the conclusion that a website’s design should begin where it’s going to live: in the browser.

Die Photoshop, die Some of you may be wondering, “what’s so bad about using Photoshop for the bulk of my design?” The application Adobe Photoshop CS4 has unexpectedly ruined your day. Photoshop’s propensity to crash at crucial moments is a running joke in the industry, as is its barely usable interface. Text rendered in Photoshop (left) versus Safari (right). A necessary evil? RGBA? Yikes! Ecco il risultato finale | Articoli Grafica | Grafica.HTML.it. Selezioniamo il livello di regolazione inverti e aggiungiamo una maschera vettoriale: dal menu livello > maschera vettoriale > mostra tutto. Selezioniamo lo strumento forma ellittica (vedi figura 15) e tenendo premuto shift, trasciniamo un cerchio in prossimità della sfera da mascherare. Figura 15. Aggiungiamo una maschera vettoriale Ellisse(clic per ingrandire) Selezioniamo lo strumento selezione tracciato, come in figura 16. Figura 16.

Usiamo lo strumento di selezione tracciato(clic per ingrandire) Clicchiamo sulla circonferenza vettoriale appena creata per selezionarla. Figura 17. Spostiamo (con lo strumento selezione tracciato) e ridimensioniamo (con il comando trasforma) la forma vettoriale per farla coincidere con la sfera del logo.

Figura 18. Inseriti tutti i loghi potete decidere di tenere o togliere la griglia che avete utilizzato, o decidere di inserirne una diversa. Figura 19. Figura 20. Figura 21. The Google+ Project. 100+ design freebies. Finding quality resources these days has become a task worthy of an Indiana Jones movie, where you have to avoid dozens of faux websites filled with ugly design elements, broken links and enormous amounts of advertising.

The main search engines have lost a lot of their capacity to aid designers fulfill their needs and that’s why WebDesignShock has decided to give you a hand by listing the main websites where you can always find top quality design sources at no cost. We have also included a small roundup featuring our favorite resources from these websites that can truly be helpful for any graphic or web designer. ThemeShock Although it’s still young, this website has already brought an enormous showcase of high end resources for designers, including web templates, buttons, backgrounds and more. Besides offering high quality design freebies, ThemeShock also has a vast catalog of premium themes and design sets that you can acquire at a reasonable prize. Ribbons pack free PSD Premium Pixels.

Red, Yellow, and Blue, or CMYK » Color » Design Festival. Following straight on from the last article in this series on color, Color Theory 101, we’re now going to take a better look at the RGB and CMYK color wheels. I’m constantly amazed by the lack of respect that exists for the red, yellow, and blue primary color wheel. I’ve heard people call it invalid, archaic, and a kindergarten tool. It’s true that the red, yellow, and blue color wheel is not a scientifically accurate model of the perception of light. Many people want to eliminate the red, yellow, and blue color wheel from art curricula, and establish the CMYK (cyan, magenta, yellow, and black) color wheel, shown in Figure 1, “The CMYK color wheel”, as the universal color model.

Note that the secondary colors in the CMYK color wheel are red, green, and blue, meaning that we could use the CMYK to illustrate both additive (using light) and subtractive (on paper) color. Fig. 1, “The CMYK color wheel” Fig. 2, “Playing with CMY gouache paints” — click for a hi-resolution scan. Wait! WordPress Themes and freebies. Untitled Document. Per realizzare una maschera è necessario partire da un disegno che ne indichi forma e dimensioni.

Si inizia a disporre la creta seguendo i contorni del disegno sulla tavoletta. (foto n. 1) La creta è un materiale malleabile, facile da usare e a basso costo. Dopo aver sbozzato il modello della maschera, definendo i volumi dei lineamenti, lo si leviga con un po’ d’acqua e si liscia. (foto n.2) Si prepara il calco, cioè il negativo che poi accoglierà la carta pressata, realizzando il modello pieno, senza buchi. Si cola il composto direttamente sul modello in creta, facendo attenzione a coprirlo in modo uniforme.

Per iniziare il lavoro della cartapesta si aspettano due giorni per la completa essiccazione del calco in gesso. Per il primo strato si usa carta riciclata di stracci azzurra, più plastica ma meno resistente della carta di cellulosa pura, che servirà per gli strati successivi. Occorre dare due mani, di cui la seconda più densa. Selenium web application testing system. jQuery Performance Tips And Tricks – A Free 30 Minute Talk. Hey guys. Today we’re going to take a look at best practices, tips and tricks for improving the performance of your jQuery code. Performance optimization is a crucial aspect of building ‘snappy’ client-side applications and something which all developers using jQuery should bare in mind.

The reason for this is that depending on how you approach writing your code or addressing the behavior you’re after, you may not be getting all of the ‘instant’ or ‘easy’ perf wins that following best practices have to offer. To help, I recorded you a free 30 minute talk on this topic and you can now watch it online, stream or download it in a format of your choice below. I wanted to record this talk because I felt that there will still a number of both obvious (and occasionally less-well understood) concepts which intermediate jQuery developers could benefit with having explained or highlighted.

Update: Some readers have been asking about a text version of the presentation to be made available. Script Junkie | Planning, Cheating and Faking Your Way Through JavaScript Tests. Good unit tests are focused, fast and isolated. Unfortunately, the code to test sometimes depends on other code that may comprise performance and/or isolation. In this article we will explore some of those cases, and how we can deal with them by planning for testability and loose coupling, and by using test fakes.

Performance Performance is key to a healthy test suite. I'm not talking about micro optimizations here, but rather the difference between your tests completing in a (very) few seconds as opposed to a few minutes. The biggest threats to acceptable performance in unit tests are mainly posed by heavy DOM manipulation, long-running timers and network activity (e.g. Heavy DOM manipulation Heavy DOM manipulation is usually the easiest one to deal with because many of the performance-related issues can be mitigated by proper planning.

As an example, consider the crude jQuery plugin I presented in my previous ScriptJunkie article. Long-running timers Faking time Network activity Isolation. Script Junkie | Unit Testing 101: Are You Testing Your JavaScript? Of course you are testing your code. Nobody writes any significant amount of code and drops it into production without ever running it. What I want to challenge you on in this article is how you are doing your testing. If you are not already automating as much of your testing as possible, be prepared for a productivity and confidence boost. A word of warning: I will be talking about unit testing and TDD in this article. I use a library such as jQuery, which ensures my code works properlyTesting is an advanced practice for the pros, not for meTesting takes too much time, I'd rather just write production code Different goals, different tests Testing can mean so many things, and how you best can test something is entirely dependent on the goals of a particular test.

Usability testingPerformance testingConsistency/Regression testing In this article we will concentrate on consistency and regression testing. How do you find bugs? Nowadays most browsers have a powerful console built in. Assertions. Mockingbird - Untitled. SitePoint : Become a Better Web Developer. Web Design Community, ispirazione, tutorial, guide e risorse gratuite.

Pearltrees videos

Tutorials | blueblots.com - Part 3. Blueblots.com Get the latest articles in your inbox for free Categories Connect With Us Category: Tutorials 35 Photoshop Tutorials for Creating Web Design Layouts 45+ Cool and Useful Tutorials for Creating Wallpapers 33 Creative Photoshop Tutorials for Manipulating Photos 25+ 3D Text Tutorials to Enhance your Photoshop Skills 20 Amazing Adobe Illustrator Tutorials for Creating Icon 20 Photoshop Tutorials Inspired by Movie Films 30 Realistic Cinema 4D Tutorials Page 3 of 3:« Previous123 Advertise with Us Most Viewed Tag Cloud AdvertisementappleArtbackgroundbrushbrushesbusiness cardcsscss3DesigndevelopmentFontsFreebiesfree fontsFree Iconsfree wallpaperGraffitihtml5IconsIllustratorInspirationinspirationsjqueryLogologo designmobilePhotographyPhotoshopPhotoshop Brushphotoshop tutorialsphppluginstextTexturestoolsTutorialsTwitterTypographyVectorwallpaperWallpapersweb designwebsiteWordPresswordpress themes Copyright © 2014 blueblots.com · All Rights Reserved.