50 (More) Fantastic Printed Brochure Designs – Part II |
- 50 (More) Fantastic Printed Brochure Designs – Part II
- Web Design: How to Create A Sleek Web Audio Player
- Wallpaper Wednesday: Online Games Wallpapers
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. Recommended Reading: 50 Beautiful Printed Brochure Designs For Your Inspiration – Part I TVNZ 7 – TRIANGULAR FOLDING BROCHURE Portobello Institute Brochure Pack Brochure Franz Ferdinand (NO OFICIAL) Institute for War & Peace Reporting Leporello Street Art design 1 by B3Ns Myspace.ldz 2009 / visual identification Studio R7 Brochure by alexball KU Radio Brochure Design by mertgumren Supercars Asia 2012 brochure by Lemongraphic MHHS Healthcare Brochure by stuckwithpins Graphics Brochure by j-Shipley RW Fresh Restaurant Brochure by Reclameworks Brochure Designs by creativenrg Adult Swim 2012 Comic-Con Brochure Royal Veterinary College CPD Brochure 2012 Promotional Brochure for Troubadour Gaastra Spring/Summer Brochure 2012 Macalester Fine Arts Events Brochure Name your favorite or if you have great artworks to share with our readers, let us know in the comments area. MoreHere 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. Recommended Reading: HTML5 Videos: 10 Things Designers Need To Know What We NeedBefore 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. Recommended Reading: Check out our HTML/CSS3 tutorials. 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 <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 The AudioFor 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 markupNow, 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 Furthermore, all the classes assigned on the following structure, including <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"></a></li> <li><a href="javascript:;" class="jp-pause" tabindex="1"></a></li> <li><a href="javascript:;" class="jp-mute" tabindex="1" title="mute"></a></li> <li><a href="javascript:;" class="jp-unmute" tabindex="1" title="unmute"></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 We covered about this subject our previous post: CSS3 Tutorial: Create A Sleek On/Off Button. Activating the Audio PlayerNext, 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, $(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 Styling the PlayerIn 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 TitleWe 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 ContainerThe audio player GUI is contained within a .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 ControlThe 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 .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 ButtonFor the play and pause as well as the volume button, we we will set their .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 BarThe 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.
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. Read Also: 80 Absolutely Beautiful Video Game Wallpapers Veigar. Available in 1920×1200. Blitzcrank / Bumblebee Mixup Model. Available in 1920×1080. The Chain Warden. Available in 5940×3300. Kassadin. Available in various sizes. DotA 2 Morphling. Available in 1366×768. Kill Stealers. Available in 1600×900. TERA High Elf Male. Available in 1920×1080. Lineage. Available in various sizes. Gelbin Mekkatorque. Available in 1600×1043. Artwork Garrosh Hellscream. Available in 1545×1200. Monk. Available in various sizes. Blackshot. Available in various sizes. Battlefield BC2. Available in 1920×1080. The WarZ. Available in various sizes. The Secret World. Available in 1680×1050. Starcraft II Battlecruiser. Available in 1920×1080. |
You are subscribed to email updates from hongkiat.com To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 20 West Kinzie, Chicago IL USA 60610 |
0 comments:
Post a Comment