VIEW ALL GALLERY LIGHTS

Wednesday, December 30, 2009

The last collection of Jquery plugins in Simplex Design blog in 2009

jQuery has been one of the more popular JavaScript Framework . I love its structure and plugins ,very interesting for web designer for making interactive website . It's fast and easy to use .
jQuery released version 1.3 in January 2009 and more plugins have been appearing online as well.
Here is the last collection of jQuery plugins in 2009 that shown on my blog .Check it out my friend .
http://img.viralpatel.net/2009/05/jquery-thumb.jpg


Page Slide
This plugin allow web designer adding more content in space of web interface . One page is shown and one page is hidden . When click event is invoked , the slide is animated and the hidden page is shown .
I think it's the best for adding information for a page in  website .For example ,you have a text in one page and you can add some notes or explanations in the hidden page which only show when mouse click .
Page Slide
Lazyload
This plugin is very useful for long web pages . With this plugin ,all images which are out of viewport ( the view of browser window) will not be loaded until you scroll to them .So it make the page loading become faster .
Lazy Load
Rotateimage
I think it's a cool plugin .I've never use it ^^ But anyway ,it look good .
Rotate Image
Tokenizing Autocomplete
This plugin allows users to select multiple items from a predefined list, using auto-completion as they type to find each item. You may have seen a similar type of text entry when filling in the recipients field sending messages on facebook.

Auto Complete

Markitup
It is a very lightweight, customizable and flexible editor engine made to meet the developer's needs in their content management system, blogs, forums or websites.
Markitup
Password Strength
This plugin shows the strength of you passwords by telling you how long time it would take to brute force them. Very popular in websites or forum registrations .
Password Strength
Before After
This plugin helps to show the difference between 2 images, that let user to drag a slider over the images, which were sandwiched with one on top of the other, so that you could easily see how dramatic the changes were.
I think it's very good for website on photoshop or anything like that .Showing the differences of picture before and after re-touching . A good application ,right?
Before After
Ajax Fancy Captcha jQuery Plugin
A new way captcha . Instead of completing textbox with the given words ,with this method,we drag and drop icons .
Ajax Fancy Captcha
Roundabout
This plugin helps you convert a structure of static HTML elements into a highly customizable turntable-like interactive area. And now, It's not just turntables, but many other shapes!
Round About


Merrkat
It can create a frame in your site for ads ,announcements ...like ifFrame ...but better
Meerkat


Text Resizer
This plugin attempts to solve one problem: that of resizing text on demand by the user, where the user is given the option to enlarge or decrease the size of the website’s text.
Text Resizer
Threedots
This plugin is used in many scenarios in the display of online text where shortened, truncated representations are best used.A kind of "readmore" in many blogs .
Three Dots
Live Preview
Great plugin I found . You can see its application in some website such as W3school.org



Endless Scroll
This plugin makes the page keeps loading with new items attached at the end, instead of paging through items using the traditional pagination technique.
Endless Scroll
jParallax
This is a proof of  what Jquery can do . You can take a look at this plugin and you will find out that it can replace Flash . Awesome !
jParallax



We are at the end of 2009 and now is the time for waiting better plugins which will be released in 2010 ! This list is the latest collection of jquery plugins in 2009 in Simplex Design blog ,I hope you enjoy it .

huy signature

Happy New Year! And Merry Christmas!

I congratulate all with wonderful holidays!
I wish all the new year of happiness, luck and love!
Some photo-art and body-art for New Year.











































































Finally one of my very old pictures.
Best regards, Dmitry.


Fantasies of the New Year. Colored pencils on paper. 16x24 cm

Monday, December 28, 2009

Erotic painting. Sergey Sovkov.

The art-works of Russian artist Sergey Sovkov. Bright images of the nude men, interesting picturesque technics.

Amber mood. Oil on canvas. 37х60cm




















The hunter of dreams. Oil on canvas. 51х86cm


















All alive. Oil on canvas. 70х110cm


















Years gold. Oil and acryle on canvas. 50х70cm

















Gin. Oil on canvas. 50х80cm











Heavenly meal. Oil on canvas. 90х110cm














Revival. Oil on canvas. 45х95cm




















Fire-worshiper. Oil on cardboard. 30х40cm



















Cornflower. Oil on canvas. 80х100cm















Ledogor. Oil on canvas. 60х80cm
















Opposition. Oil on canvas.


















Website: http://www.sovkovart.ru/

Art-works by Kirill Fadeev.

Nude men in creativity of Ukrainian artist Kirill Fadeev. Stylish works in the mixed technics.

Autumn

















Knight

















Nicolaus Copernicus




















Prometheus

















Rider of Night

















Russian banya

















St.Sebastian

















Waterfall


















Website: http://erotic.artmam.com/----6--.htm

Playing music in your blog using Yahoo media player

If you are owner of music site ,or podcast ,or blog ,and you want to embedded a music player into your site so that visitors can listen to the audio in the browser itself without requiring an external player like QuickTime or Windows Media Player.
I recommend using the Yahoo! Media Player that auto-detects links to MP3 files in your web pages and creates an embedded player for each link.




Live demo

How to use ?

1,Adding this code into HTML code of your webpage
<script type="text/javascript" src="http://mediaplayer.yahoo.com/js"></script>

in blogger ,you can paste this code before </head> tag of blogger template .

2,Adding audio links to your page ,like this :

<a href="http://..../example1.mp3">First link</a>
<a href="http://...../example2.mp3">Second link</a>
<a href="http://..../example3.mp3">Third link</a>
...........

Ok. You are done !
Each time when you click on the links in step 2 ,a player will appear . Easy to install ,no quicktime or window media plugin required .
But this is not a perfect player .It can only play audio file in mp3 format ,in various bitrate .

Some Options for Yahoo Media Player

To tell player which link are playable ,you can use these method :
1, Use the file extension like this <a href="http://mediaplayer.yahoo.com/example1.mp3">First link</a> ,the extension of file is mp3 ,so player will consider this link playable .

2,Use the type attribute to hint that the file type is playable. If the type attribute is set, the music player ignores the file extension.
In this example, the link would be considered playable:

<a href="http://example.com/mysong.php" type="audio/mpeg">this is a song</a>

And in this example, the link would not be considered playable:

<a href="http://example.com/mysong.mp3" type="image/png">this is a song</a>

3,Give the link the class "htrack", like this:

<a class="htrack" href="http://example.com/mysong">this is a song</a>

If the htrack class is set, the music player includes the link, regardless of the file extension or the type attribute.

Adding album art by this way :

<a href="example.mp3"><img src="example.png" alt="" />my song</a>

The dimensions of the image should be square, not rectangular.

If you don't want the image to show up directly in the main web page, add style="display:none" to your img tag:

<a href="example.mp3"><img src="example.png" alt="" style="display:none" />my song</a>

Other options can be found in homepage of yahoo media player

Have fun with it !
huy signature

Thursday, December 24, 2009

Erotic drawing. Roland Maas.

The art-works of the Dutch artist and illustrator Roland Maas. Severe reliefs, a leather, rivets and unique firm style of the artist.

































































Website: http://www.rolandmaas.nl/

Erotic drawing. Nick Baсkes.

The art-works of the American artist and illustrator Nick Baсkes. Beautiful man's images and magnificent technics of execution.









































































































































Website: http://www.nickbackes.com/