VIEW ALL GALLERY LIGHTS

Sunday, May 30, 2010

Simplex Vcard - template for minisite

Single page-minisite are light and very simple, but they have many uses. It's the best option for an professional online CV ,it can be use when your site is "under construction" . It's also use as a virtual business card , show your portfolio .
I made one Blogger template for minisites . With Blogger platform ,you don't need to worry about hosting and bandwidth ,and Javascript function is fully supported . I named it SimplexVcard .I was inspired by Vcard template in Themeforest and would like to make one in Blogger with some modifications and features . Hope you like this .

P/s: Thanks Gabriel Silveira at http://source-zone.co.cc for translating this template to PT




Live Demo | Download | | Download file and live demo in PT-BR

Here is steps to install this template :
1, Download this template
2,Open template file in a word editor like Notepad++ ,Wordpad....
3, Find this code :
<script type="text/javascript">
     $(document).ready(function(){

    $('#flickrphoto').jflickrfeed({
        limit: 8,
        qstrings: {
            id: '37304598@N02'
        },
        itemTemplate: '&lt;li&gt;&lt;a href=&quot;{{image_b}}&quot;&gt;&lt;img src=&quot;{{image_s}}&quot; alt=&quot;{{title}}&quot; /&gt;&lt;/a&gt;&lt;/li&gt;'
    });   

});

</script>

Change the Flickr Id ( where I marked in green ) to yours Flickr id . You can upload image of your projects ,your works or your artworks to Flickr and add your Flickr Id to this template ,your images will be showed in this minisite .
4,To change logo ,find this code :
#logo a {
    display:block;
    background:url(http://img199.imageshack.us/img199/3850/simplexdesign.png) no-repeat;
    text-indent:-9999px;
    height:42px;
    width: 201px;
    float:left;
    margin-left:10px;
}
and change background attribute value to your logo .The standard size for logo is 200x40px .
5, To change the information in About me section ,find the code between :
<!--about-->
<!--/About-->
and change it as you want .
6, To add more network to this minisite ,find the code between
<!--Social -->
<!-- /Social -->
And add link to your social network accounts .
7, After social network code ,you will see the code for Contact information .Add your email ,your blog ,phones ...etc

8, Save template ,and upload it to blogger . When you upload ,Blogger will ask you for keep or remove widgets ,you choose remove . Ok,you are done .
Now you have a minisite for yourself .
9, If you want ,you can change the default design of this template with your own design by modifying CSS code . For example ,if you want to change the background ,find this css code :
body {
    background: #e0e0e0 url(http://img38.imageshack.us/img38/4861/backgroundwe.jpg) repeat-x;
    margin: 0;
    font-size:100%;
    line-height:1.125em;
    font-family:'Helvetica Neue', Arial, sans-serif;
}
Change the background attribute to the background image you want .
That's all . I hope this template helpful to you .

Saturday, May 29, 2010

Erotic show. "Naked Boys Singing".

Ten guys play out on stage presentation, talking about men and male body. They have great singing, dancing. And while completely naked! DVD-movie.
































































































Website:
http://www.funnyboyfilms.com/naked/warning/warning.html

Erotic digital art. Przemek Gajowczyk.

Art-works of Polish photographer and digital artist Przemek Gajowczyk. Characters in popular comics and other works with nude men.

Time for a bath


















The Samurai


















Prince of Persia














In Day and at Night













The Warrior














Nude Tarzan and Jane


















Website: http://legendg85.deviantart.com/

Thursday, May 27, 2010

Erotic painting. Wu Meng Chun.

Art-works of the Chinese artist Wu Meng Chun. The original painting with naked men.





































































































Website: http://www.wu-meng-chun.com/

Latest update for SimplexDesign


Several days ago ,when you access SimplexDesign blog ,you got a warning from Google for virus and malware . Thanks to Google ,I find out that Bidvertiser ads in my site is the source for virus and malware . So I decide to remove it and Sorry to you all ,if you got a virus from my site .

Today ,I think every thing goes right .So I open this site again .
Thank you all for your advices and support .

Tuesday, May 25, 2010

Erotic painting. Aleksander Balos.

Art-works of Polish artist Aleksander Balos /lives in the United States/. A dynamic and emotional painting.

Discovery of a Circle












See No Evil










Rain Makers




















Vision of Mercy



















Discovery of America











Website:
http://www.aleksanderbalos.com/

Sunday, May 23, 2010

The erotic photo-art. Joe Oppedisano.

The well-known male model Joe Sayers in the art-work American photographer Joe Oppedisano. Beautiful body, beautiful photos.
























































































































Website: http://www.joeoppedisanoxxx.com/

Friday, May 21, 2010

Body-painting. Misc.

Bright pictorial imagination of different American photographers and body-painters in the men's bodies.

photographer Bruce Weber



















photographer Charles Archer













body-painter
Paul Roustan




































photographer Scott Marrs


















Website: http://www.bruceweber.com/
Website: http://www.charlesarcherphotography.com/
Website: http://members.cox.net/roustan/
Website: http://www.scottmarrs.com/

Thursday, May 20, 2010

Make a vertical scroll menu


A vertical scroll menu is a good idea for sidebar ,with this menu ,you can add more links than others . Last week ,I came across to queness.com website and found an article for making this vertical scroll menu . So I take it and write it down here again for applying to Blogger .I hope it helpful to you .

Check out my Live Demo

Here is steps for making this kind of menu :
1,Go to Blogger and create an HTML/Javascript widget .In fact ,you can add the code direct to template but it will be difficult for you to edit and find errors ,so a widget is better .

2,Add this script
<script type="text/javascript" src="http://dinhquanghuy.110mb.com/scroll%20menu/jquery-1.js"></script>
<script type="text/javascript" src="http://dinhquanghuy.110mb.com/scroll%20menu/jquery.js"></script>
<script type="text/javascript" src="http://dinhquanghuy.110mb.com/scroll%20menu/jquery_002.js"></script>
This code will included Jquery framework ,Jquery Ease plugin and Jquery color animation plugin to your web .

3,The main code :
<script type="text/javascript">
$(document).ready(function() {   
    //Background color, mouseover and mouseout
    var colorOver = '#31b8da';
    var colorOut = '#1f1f1f';

    //Padding, mouseover
    var padLeft = '20px';
    var padRight = '20px';
   
    //Default Padding
    var defpadLeft = $('#menu li a').css('paddingLeft');
    var defpadRight = $('#menu li a').css('paddingRight');
       
    //Animate the LI on mouse over, mouse out
    $('#menu li').click(function () {   
        //Make LI clickable
        window.location = $(this).find('a').attr('href');
       
    }).mouseover(function (){
       
        //mouse over LI and look for A element for transition
        $(this).find('a')
        .animate( { paddingLeft: padLeft, paddingRight: padRight}, { queue:false, duration:100 } )
        .animate( { backgroundColor: colorOver }, { queue:false, duration:200 });

    }).mouseout(function () {
   
        //mouse oout LI and look for A element and discard the mouse over transition
        $(this).find('a')
        .animate( { paddingLeft: defpadLeft, paddingRight: defpadRight}, { queue:false, duration:100 } )
        .animate( { backgroundColor: colorOut }, { queue:false, duration:200 });
    });   
   
    //Scroll the menu on mouse move above the #sidebar layer
    $('#sidebar').mousemove(function(e) {

        //Sidebar Offset, Top value
        var s_top = parseInt($('#sidebar').offset().top);       
       
        //Sidebar Offset, Bottom value
        var s_bottom = parseInt($('#sidebar').height() + s_top);
   
        //Roughly calculate the height of the menu by multiply height of a single LI with the total of LIs
        var mheight = parseInt($('#menu li').height() * $('#menu li').length);
   
        //I used this coordinate and offset values for debuggin
        $('#debugging_mouse_axis').html("X Axis : " + e.pageX + " | Y Axis " + e.pageY);
        $('#debugging_status').html(Math.round(((s_top - e.pageY)/100) * mheight / 2));
           
        //Calculate the top value
        //This equation is not the perfect, but it 's very close   
        var top_value = Math.round(( (s_top - e.pageY) /100) * mheight / 2);
       
        //Animate the #menu by chaging the top value
        $('#menu').animate({top: top_value}, { queue:false, duration:500});
    });

   
});
   
</script>

4,A little of CSS for our cook :

<style>
body {
padding:0;
margin:0 20px;
}

#sidebar {
height:400px;
overflow:hidden;
position:relative;
background-color:#eee;
}   

#menu {
width:100%;
list-style:none;
padding:0;
margin:0;
top:0;
position:relative;
height:100%;
width:300px;
}

#menu li {
padding:10px 0;
text-align:right;
display:block;
cursor:hand;
cursor:pointer;
}

#menu li a {
background:url() repeat #1f1f1f;

color:#ddd;
font-family:helvetica, arial, verdana;
font-size:9px;
font-weight:900;
display:inline;
padding:20px 8px 5px 20px;
text-decoration:none;
}

#menu li span {
font-family:georgia, arial;
font-size:9px;
color:#464646;
}

</style>

5,And now the HTML for menu,it's like that :
<div id="sidebar">
<ul id="menu">
<li><a href="#">MENU 1 </a></li>
<li><a href="#">MENU 2</a></li>
<li><a href="#">MENU 3</a></li>
<li><a href="#">MENU 4</a></li>
<li><a href="#">MENU 5</a></li>
<li><a href="#">MENU 6</a></li>
......
......
......
</ul>
</div>

Add more <li><a href="#">MENU ...</a></li> if you want more link in menu .

Ok,Save widget and you are done .
P/s: To make your menu look good and more professional ,you can add /edit CSS to make it as you want .

Wednesday, May 19, 2010

Erotic drawing. Jack Whitlow.

Art-works by American artist Jack Whitlow. Nude men in black-and-white drawings.

Botticelli Youth



















Nature Boy

















Max

















Homage to GG




















Youth 2
















Website:
http://jx96tbrd.deviantart.com/

Tuesday, May 18, 2010

Erotic 3-D Art. Joaquim Abella.

Art-works of the Spanish digital painter Joaquim Abella. Vivid images of Angels and Serafins.

Angel caucasico



















San Super Cupido



















Serafin rubio

















Angel borde

















Querubin













Serafin











Angel caido














Website: http://www.quim-abella.com/