Louis-Pierre de Lorimier inc.
Site web réalisé avec wordpress pour un courtier immobilier. J'ai réalisé ce site dans son ensemble.

seen from Malaysia
seen from Saudi Arabia

seen from United States

seen from United States
seen from Saudi Arabia

seen from Antigua & Barbuda
seen from Russia
seen from China
seen from China
seen from Malaysia

seen from Norway

seen from United States
seen from United Kingdom
seen from Slovakia

seen from Australia
seen from United States
seen from United Kingdom
seen from Canada

seen from United States
seen from United States
Louis-Pierre de Lorimier inc.
Site web réalisé avec wordpress pour un courtier immobilier. J'ai réalisé ce site dans son ensemble.

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Simsmart
Site web pour Simsmart Technologies, développeur de solutions de contrôle de l’énergie.
Site réalisé au sein de l'agence Influenza Marketing.
jQuery Content Rotator with the Cycle plugin
Requirements
- Rotator, previous, next, and pause buttons
- text to display current slide of total slides status
Solution
Plugin: http://jquery.malsup.com/cycle
Html:
<div id="featured-rotator">
<div class="premier-item"></div>
...More divs as slides...
<div class="premier-item"></div>
</div>
<div id="featured-rotator-controls">
<span class="button" id="previous"><</span><span class="button" id="pause">||</span><span class="button" id="next">></span> <span id="page-count"></span>
</div>
Script:
<script type="text/javascript">
$(document).ready(function () {
var premierCount = $("#featured-rotator div.premier-item").length;
var currentItem = 0;
var onAfter = function () {
if (currentItem == 0 || currentItem >= premierCount) { currentItem = 1; }
else if (currentItem < 0) { currentItem = premierCount; }
else { currentItem++; }
$("div#featured-rotator-controls span#page-count").html(currentItem + " of " + premierCount);
};
$("#featured-rotator").cycle({
fx: 'scrollLeft',
timeout: 5000,
after: onAfter
});
$("div#featured-rotator-controls span#pause").click(function () {
$("#featured-rotator").cycle('toggle');
});
$("div#featured-rotator-controls span#previous").click(function () {
currentItem = currentItem - 2; //Move our place back 2 spots so moving forward one will put us in the right spot
$("#featured-rotator").cycle('prev');
});
$("div#featured-rotator-controls span#next").click(function () {
$("#featured-rotator").cycle('next');
});
});
</script>
Styles:
div#featured-rotator, div#featured-rotator-controls
{
width:700px;
background-color:beige;
font-family:"Trebuchet MS", "Arial", "Verdana", "Sans-Serif";
font-size:10px;
color:#666;
}
#featured-rotator div
{
vertical-align:top;
}
#featured-rotator h2
{
margin:10px 0 15px 0;
color:#339;
font-size:24px;
}
#featured-rotator a
{
text-decoration:none;
color:#339;
}
#featured-rotator-controls
{
line-height:24px;
}
#featured-rotator-controls span.button
{
cursor:pointer;
padding:2px 5px;
margin-right:3px;
background-color:#666;
color:#fff;
}
#featured-rotator div.premier-item div.premier-item-left, #featured-rotator div.premier-item div.premier-item-right { width:350px; float:left; }
#featured-rotator div.premier-item div.premier-item-right { clear:right; }