G$earch

50 (More) Fantastic Printed Brochure Designs – Part II

Posted by Harshad

50 (More) Fantastic Printed Brochure Designs – Part II


50 (More) Fantastic Printed Brochure Designs – Part II

Posted: 06 Mar 2013 01:17 AM PST

If you liked the first collection of fantastic printed brochure designs we had earlier, here’s another batch, ample proof that there is no shortage of creative brochure designs.

It doesn’t matter if they are ready-made or specially tailored for their clients, these brochures are loud and subtle, bright and moody – an ecstatic display of color and craft, sometimes with creative packaging ideas in tow.

Yup, these brochures may come in many shapes and sizes, literally. Here are 50 more examples of creative branding on print brochures and booklet brochures coming up.

Annual Report Brochure

TVNZ 7 – TRIANGULAR FOLDING BROCHURE

ZIMAT Brochure

Portobello Institute Brochure Pack

Hindenburg brochure

Snowbordets historie

Brochure Franz Ferdinand (NO OFICIAL)

Come and Study

Atmosphere corporate brochure

The White House Project

Institute for War & Peace Reporting

Entre Elles Brochure

SYRFILM 

Brooklyn Arts Council

The White House Project

Brooklyn Public Library

ACLU

Driven Marketing

IamExpat Brand Brochure

Girl Scouts

Ford Foundation

The White House Project

Ambiental by LaKripTa

Brochure by jojon89

Leporello Street Art design 1 by B3Ns

Myspace.ldz 2009 / visual identification

EEI Brochure by `TheRyanFord

Brochure by Clarissa Schwarz

Moma brochure by jawnagione

Studio R7 Brochure by alexball

KU Radio Brochure Design by mertgumren

Supercars Asia 2012 brochure by Lemongraphic

MHHS Healthcare Brochure by stuckwithpins

School Brochure by KatrineH

AIA Brochure by TheRyanFord

Graphics Brochure by j-Shipley

RW Fresh Restaurant Brochure by Reclameworks

Brochure Designs by creativenrg

Adult Swim 2012 Comic-Con Brochure

VISUAL IDENTITY UFF

ESAM Caen / Cherbourg

Royal Veterinary College CPD Brochure 2012

Promotional Brochure for Troubadour

Sales Brochure

Ann Sacks

YellowBean Brochure 2012

Gaastra Spring/Summer Brochure 2012

Pulsar Retail Brochure 2012

Macalester Fine Arts Events Brochure

Honda Lawn & Garden Brochure

Name your favorite or if you have great artworks to share with our readers, let us know in the comments area.  

More

Here are more related articles to keep you inspired:

Web Design: How to Create A Sleek Web Audio Player

Posted: 06 Mar 2013 01:14 AM PST

I still remember in the early 2000s when playing rich media (audio and video) online came with a lot of constraints. It’s easy to take the beginnings for granted, especially since today, we have many outlets to play audio i.e. last.fm or play video such as Youtube.

In this post, as the title implies, we are going to create Web Audio Player. If you are running a website for podcasting and want to create a media player that will suit your overall web design, this post is probably for you.

Here is how our audio player is going to be look like, as inspired from this design at Dribbble.

What We Need

Before we create the audio player, we need to prepare some key items for it: the jPlayer, jQuery and a font icon set called FontAwesome.

First of all, let’s download the jPlayer. The jPlayer is a jQuery Plugin that allows us to run rich media on our web page without a hassle. As long as you can HTML and CSS you are ready to go.

jPlayer is essentially a jQuery plugin, thus we also need to download the jQuery for it to work, and at the time of the writing jQuery is currently at version 1.8.2. We also need some icons for the media player GUI, and this time we will be using FontAwesome to deliver the icons.

After that, we extract all the downloaded files and put all the stuff, including the jPlayer files, the jQuery and the Fonts in an appropriate folder. Then link jquery.js and jquery.jplayer.min.js to the html document, as follow.

  <link rel="stylesheet" href="css/normalize.css">  <link type="text/css" href="css/style.css" rel="stylesheet" />  <script type="text/javascript" src="js/jquery.js"></script>  <script type="text/javascript" src="js/jquery.jplayer.min.js"></script>  

As you can see, in addition to jQuery and jPlayer library, we’ve also linked two CSS files in there. The first one normalize.css will reset or normalize the browser’s styles, so our web page will be rendered more consistently across the browsers, whilst the second one, style.css is where we put our main styles.

The Audio

For demonstration in this tutorial, we are going to use the audio from Kelli Anderson from her presentaion at TEDx Pheonix. Well, it is actually a video, but you can extract the audio only either through one of the following tools, Easy Youtube Downloader (FF Extension) or KeepVid.com.

Structuring the HTML markup

Now, it’s time to structure the HTML markup for the audio player and below are the HTML markup we need. The important thing from this markup is the id=jquery_jplayer_1 attribute that is assigned in the div that contains all these. This id is used to link this structure to jPlayer later on through jQuery function.

Furthermore, all the classes assigned on the following structure, including jp-play, jp-pause, jp-mute and jp-unmute are all the standard classes used in jPlayer. I suggest that you don’t change these classes as well as the id attribute to make things easier for when we style the audio player later on (unless you really know what you are doing).

  <div id="jquery_jplayer_1" class="jp-jplayer"></div>    <div id="jp_container_1" class="jp-audio">    <div class="jp-type-single">        <div class="jp-title">        <ul>          <li>TEDxPhoenix - Kelli Anderson - Disruptive Wonder for a Change</li>        </ul>      </div>        <div class="jp-gui jp-interface">            <ul class="jp-controls">            <li><a href="javascript:;" class="jp-play" tabindex="1">&#61515;</a></li>            <li><a href="javascript:;" class="jp-pause" tabindex="1">&#61516;</a></li>            <li><a href="javascript:;" class="jp-mute" tabindex="1" title="mute">&#61480;</a></li>            <li><a href="javascript:;" class="jp-unmute" tabindex="1" title="unmute">&#61478;</a></li>          </ul>            <div class="jp-progress">            <div class="jp-seek-bar">              <div class="jp-play-bar"></div>            </div>          </div>            <div class="jp-time-holder">            <div class="jp-current-time"></div>          </div>            <div class="jp-volume-bar">            <div class="jp-volume-bar-value"></div>          </div>        <div class="jp-no-solution">        <span>Update Required</span>        To play the media you will need to either update your browser to a recent version or update your <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash plugin</a>.      </div>    </div>  </div>  

If you take a closer look at this HTML structure, you will find the following characters &#61515;, &#61516;, &#61480; and &#61478;. These characters are special HTML numbers to refer and render the icon characters that come from FontAwesome.

We covered about this subject our previous post: CSS3 Tutorial: Create A Sleek On/Off Button.

Activating the Audio Player

Next, once the HTML markup has been cleared up, we simply need to activate the player with the following script. In this script we provide the audio sources and as you can see below, we have added two sources, mp3 and oga. The oga format will extend cross browser compatibility, especially in Firefox and Opera.

  $(document).ready(function(){    $("#jquery_jplayer_1").jPlayer({      ready: function () {        $(this).jPlayer("setMedia", {          mp3: "audio/TEDxPhoenix-KelliAnderson-DisruptiveWonderforaChange.mp3",          oga: "audio/TEDxPhoenix-KelliAnderson-DisruptiveWonderforaChange.ogg"        });      },      swfPath: "/js",      supplied: "mp3,oga"    });  });  

After we add this script, the audio actually is already playable and if we inspect the HTML markup using Firebug or other Developer Tools, we can find a new <audio> HTML5 element also generated.

Styling the Player

In this section we will start adding styles to make the audio player look better, and we will start off by defining the new font family and removing the underline from the anchor element, like so.

  @font-face {      font-family: "FontAwesome";      src: url("fonts/fontawesome-webfont.eot");      src: url("fonts/fontawesome-webfont.eot?#iefix") format("eot"),       	 url("fonts/fontawesome-webfont.woff") format("woff"),       	 url("fonts/fontawesome-webfont.ttf") format("truetype"),       	 url("fonts/fontawesome-webfont.svg#FontAwesome") format("svg");      font-weight: 400;      font-style: normal;  }  a {      text-decoration: none;  }  .jp-jplayer,.jp-audio {      width: 420px;      margin: 50px auto;  }  

Audio Title

We won’t change this section style heavily, as it only contains the text title of the audio that is being played. We will only make the title text smaller and turn it grey.

  .jp-title {      font-size: 12px;      text-align: center;      color: #999;  }    .jp-title ul {      padding: 0;      margin: 0;      list-style: none;  }  

GUI Container

The audio player GUI is contained within a div assigned with jp-gui class. You can see in the above screenshot how our media player will look like. We apply gradient colors for the GUI theme and we use this color number for the starting color #f34927, and #dd3311 for the end color. Also, make sure that the position property for this div is defined to relative.

  .jp-gui {  	position: relative;  	background: #f34927;  	background: -moz-linear-gradient(top,  #f34927 0%, #dd3311 100%);  	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f34927), color-stop(100%,#dd3311));  	background: -webkit-linear-gradient(top,  #f34927 0%,#dd3311 100%);  	background: -o-linear-gradient(top,  #f34927 0%,#dd3311 100%);  	background: -ms-linear-gradient(top,  #f34927 0%,#dd3311 100%);  	background: linear-gradient(to bottom,  #f34927 0%,#dd3311 100%);  	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f34927', endColorstr='#dd3311',GradientType=0 );  	-webkit-box-shadow:  0px 1px 1px 0px rgba(0, 0, 0, .1);          box-shadow:  0px 1px 1px 0px rgba(0, 0, 0, .1);      border-radius: 3px;  	overflow: hidden;  	margin-top: 10px;  }  

GUI Control

The GUI control section contains UI the control the audio, such as the play and pause button, the volume and mute button. in this section, we set the font-family property to FontAwesome, and turn the text color to white as well as add the text shadow.

  .jp-controls {      padding: 0;      margin: 0;      list-style: none;      font-family: "FontAwesome";      text-shadow: 1px 1px 0 rgba(0,0,0,0.3);  }    .jp-controls li {      display: inline;  }    .jp-controls a {      color: #fff;  }  

Play and Pause Button

For the play and pause as well as the volume button, we we will set their position to absolute, that is why we set .jp-gui to relative previously. So, the position of these buttons will be relative to their closer parent rather than the browser window.

  .jp-play,.jp-pause {      width: 60px;      height: 40px;      display: inline-block;      text-align: center;      line-height: 43px;      border-right: 1px solid #d22f0f;  }    .jp-controls .jp-play:hover,.jp-controls .jp-pause:hover {      background-color: #de3918;  }    .jp-mute,.jp-unmute {      position: absolute;      right: 55px;      top: 0;      width: 20px;      height: 40px;      display: inline-block;      line-height: 46px;  }    .jp-mute {      text-align: left;  }  .jp-time-holder {      color: #FFF;      font-size: 12px;      line-height: 14px;      position: absolute;      right: 90px;      top: 14px;      text-shadow: 1px 1px 0 rgba(0,0,0,0.3);  }  

Progress and Volume Bar

The progress bar will have a similar look, they are only different in size. The progress obviously should be longer and bigger than the volume bar.

  .jp-progress {      background-color: #992E18;      border-radius: 20px 20px 20px 20px;      overflow: hidden;      position: absolute;      right: 133px;      top: 15px;      width: 210px;      -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.2) inset;      box-shadow: 0 1px 1px 0 rgba(0,0,0,0.2) inset;  }    .jp-play-bar {      height: 12px;      background-color: #fff;      border-radius: 20px 20px 20px 20px;  }    .jp-volume-bar {      position: absolute;      right: 10px;      top: 17px;      width: 45px;      height: 8px;      border-radius: 20px 20px 20px 20px;      -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1) inset;      box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1) inset;      background-color: #992E18;      overflow: hidden;  }    .jp-volume-bar-value {      background-color: #fff;      height: 8px;      border-radius: 20px 20px 20px 20px;  }  

That’s all the codes we need. Now you can see the demo as well as download the source from the following links.

Wallpaper Wednesday: Online Games Wallpapers

Posted: 06 Mar 2013 05:15 AM PST

Gamers just want to take their gaming skill up to another level. Whether it is to prove their grit in the field, or if they just want to turn their team invincible, gamers go all out for the cause. In a salute to hardcore gamers amongst our readers, we dedicate these inspiring wallpapers to the troops of keyboard warriors.



(Image Source: Hanenama)

From famous real-time strategy games to First Player Shooter games, we’ve pulled 18 wallpapers from popular and exciting online games to serve as inspiration for online gamers everywhere. Stop ganking and pawning, and start grabbing one of these wallpapers. Didn’t see your favorites here? Let us know what to look out for.

Veigar. Available in 1920×1200.

veigar

Blitzcrank / Bumblebee Mixup Model. Available in 1920×1080.

Blitzcrank-/-Bumblebee-Mixup-Model

Fate. Available in 1188×641.

fate

The Chain Warden. Available in 5940×3300.

the-chain-warden

Kassadin. Available in various sizes.

kassadin

DotA 2 Morphling. Available in 1366×768.

dota-2-morphling

Kill Stealers. Available in 1600×900.

kill-stealers

TERA High Elf Male. Available in 1920×1080.

tera-high-elf-male

Lineage. Available in various sizes.

lineage

Gelbin Mekkatorque. Available in 1600×1043.

gelbin-mekkatorque

Artwork Garrosh Hellscream. Available in 1545×1200.

artwork-garrosh-hellscream

Monk. Available in various sizes.

monk

Blackshot. Available in various sizes.

blackshot

Battlefield BC2. Available in 1920×1080.

battlefield-bc2

BF3. Available in 1920×1080.

bf3

The WarZ. Available in various sizes.

the-warz

The Secret World. Available in 1680×1050.

the-secret-world

Starcraft II Battlecruiser. Available in 1920×1080.

starcraft-II-battlecruiser

0 comments:

Post a Comment