Powered By

Powered by Blogger

Tampilkan postingan dengan label banner. Tampilkan semua postingan
Tampilkan postingan dengan label banner. Tampilkan semua postingan

Jumat, 11 Maret 2011

Ubuntu 11.04 Natty Narwhal & 11.10 Oneiric Ocelot Countdown Banners

The Ubuntu 11.04 Natty Narwhal countdown banners contest hasn't started yet, but if you can't wait, you can use some cool banners provided by picomol.de. And if you're really impatient, you can go further and use a beautiful Ubuntu 11.10 Oneiric Ocelot countdown banner provided by the same website.


The banners use an image that's automatically updated so it can be inserted on any website (including wordpress.com, etc.). And what's even cooler is that the banners come in various sizes - you can see the Ubuntu 11.04 banners in action below:


Ubuntu 11.04 days to go

Ubuntu 11.04 days to go

Ubuntu 11.04 days to go

Ubuntu 11.04 days to go



If you're really really impatient, you can also use an Ubuntu 11.10 Oneiric Ocelot countdown banner which look awesome - and just like the Ubuntu 11.04 countdown banners, come in multiple sizes:

Ubuntu 11.10 days to go

Ubuntu 11.10 days to go

Ubuntu 11.10 days to go

Ubuntu 11.10 days to go



Want to use them on your site/blog? Get the code from here: Ubuntu 11.04 Natty Narwhal | Ubuntu 11.10 Oneiric Ocelot. The website is in German but all you have to do is click the "Anzeigen" link under a banner to get the code. If needed, use Google Translate.


Thanks to Valentin for the tip!

Rabu, 18 Agustus 2010

Ubuntu 10.10 Maverick Countdown Banners For Your Website Or Blog

The official Ubuntu 10.10 Maverick Meerkat countdown banner is not available yet, but a lot of designs have been submitted to the Ubuntu Wiki. All of them look amazing but only a few are already functional. So why not use them on your website or blog already?


Here are the banners which you can already use and their corresponding embedding code:



David Laurell's simple design




<iframe src="http://daverix.net/maverickcountdown/iframe.html" frameborder="0" height="150" width="180" ></iframe>



Cassidy James' 10.10 Calendar Design

This Ubuntu 10.10 countdown banner displays "Coming Soon" until there are only 38 days left.





<iframe src="http://cassidyjames.com/downloads/maverick-iframe.html" frameborder="0" scrolling="no" width="180" height="150"></iframe>



Joern Konopka's Entry

This banner comes with some awasome HTML5 transitions (so make sure you use a HTML5 capable web browser) as well as the new Ubuntu font.



<div id="ubuntucounter"><script type="text/javascript" src="http://upinthesky.net/ubuntucounter/counter.js"/></div>



You can find a lot more Ubuntu Countdown banner designs @ the Ubuntu wiki. Hopefully more of these will become functional soon.

Rabu, 07 April 2010

Ubuntu 10.04 Lucid Lynx Official Countdown Banners Are Live

ubuntu 10.04 lucid lynx official countdown banners

A few days ago we shared an amazing Ubuntu 10.04 Lucid Lynx countdown banner created by Immanuel Peratoner.

Now the official Ubuntu 10.04 Lucid Lynx countdown banners are live, one of them being the same banner by Immanuel, except it's orange. And there are 3 more banners so now you have more options.

You can find the official Ubuntu 10.04 Lucid Lynx banners @ http://www.ubuntu.com/getubuntu/countdown

Sabtu, 03 April 2010

Ubuntu 10.04 (Lucid Lynx) Countdown Banner For Your Website / Blog

Ubuntu 10.04 Countdown


Immanuel Peratoner created an amazing Ubuntu 10.04 Lucid Lynx countdown banner. The code to place on your website is available @ immanuel-peratoner.de and the banner comes in two sizes: 205x135 and 180x150, available in English and German.

The banner uses a PHP script to count the days remaining until Ubuntu 10.04 is released, so the banner will change automatically each day.

More banners can be found HERE (but you'll have to create the script and host them yourself).

Rabu, 21 Oktober 2009

Creating A Fluid Width Banner (With Images) Using CSS

Creating a fluid width (extensible) banner is quite easy but using one that has images is a bit tricky. In this article, I am going to explain how to create a fluid width image banner.


Introduction


Fluid width means the banner must keep it's aspect, no matter the browser / screen width (more or less). For instance, if we have a banner with an image on the right side and some text on the left, it's not that easy making the banner expand / shrink so that it looks the same on any screen resolution. But with some CSS, this can be done in just a few minutes.


Fluid Width Banner example


Go to the DEMO PAGE and change the size of your browser's width. The banner will look the same, even if you shrink or enlarge the window (sure, if you shrink it too much, It won't look good anymore, but that's because I used 2 quite large images for the left and right parts of the banner; I guess I could have made them smaller but it's all the same in the end...).

You can look at the source code of that page. You'll notice that the whole banner is not just one image, but actually three.


Creating the extensible (fluid) banner


Basically, the banner you saw in the example above uses three images: one for the text on the left, the car on the right and a tiny black portion for the extensible part in the middle.

Here are the 3 images I'm talking about:

So you'll need to cut off the left and right parts of your banner and create an intermediary image for the center part which must have the same height as the left and right images.


Here is the CSS for the banner I just created:

#center {
background-image: url(http://www.netupd8.com/w8img/1opsao.jpg);
background-repeat: repeat-x;
height: 235px;
width: 90%;
margin-right: auto;
margin-left: auto;
}
#left {
background-image: url(http://www.netupd8.com/w8img/2v0l7hh.jpg);
height: 235px;
background-repeat: no-repeat;
width: 237px;
float: left;
margin-left: -15px;
}
#right {
background-image: url(http://www.netupd8.com/w8img/2q1w7io.jpg);
background-repeat: no-repeat;
height: 235px;
width: 482px;
float: right;
margin-right: -15px;
}


As you can see, the id's are pretty self-explanatory (#left, #right, #center - replace the image I used with yours, also modify the width and height with the values for your images).

Then, to display the fluid width banner, you have to create a div with the id="center" and place the left and right div id's in this center id div which will be the main div holding the banner. But to understand better, take a look at the following code:

<div id="center"><div id="left"></div><div id="right"></div></div>


That will be enough to display our expandable banner. Enjoy!