1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
| <!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<meta name="author" content="Daniel Hagnoul">
<title>Forum jQuery</title>
<link href='http://fonts.googleapis.com/css?family=Sofia|Ubuntu:400|Kreon'>
<link rel="stylesheet" href="http://danielhagnoul.developpez.com/styles/dvjhRemBase.css">
<style>
footer { margin-top: 30rem; }
div { position: relative; border:0.1rem dotted grey; width: 20rem; height: 20rem; margin: 2rem; padding: 0.6rem; }
div:nth-of-type(1) { float: left; z-index: 30; background-color: yellow; }
div:nth-of-type(2) { float: left; z-index: 20; background-color: red; }
div:nth-of-type(3) { float: left; z-index: 10; background-color: blue; }
</style>
</head>
<body>
<h1>Forum jQuery</h1>
<h2>Titre 2</h2>
<div><button id="btn1">Slide</button></div>
<div><button id="btn2">Slide</button></div>
<div><button id="btn3">Slide</button></div>
<footer itemscope itemtype="http://danielhagnoul.developpez.com/">
<time datetime="2012-12-15T00:46:47.126+01:00" pubdate>2012-12-15T00:46:47.126+01:00</time>
<span itemprop="name">Daniel Hagnoul</span>
<a href="http://www.developpez.net/forums/u285162/danielhagnoul/" itemprop="url">@danielhagnoul</a>
<a href="http://danielhagnoul.developpez.com/" itemprop="url">Mon cahier d’exercices</a>
<a href="http://javascript.developpez.com/faq/jquery/" itemprop="url">FAQ</a>
<a href="http://javascript.developpez.com/cours/?page=frameworks#jquery" itemprop="url">Tutoriels</a>
</footer>
<script src="http://danielhagnoul.developpez.com/lib/raphael-min.js"></script>
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="http://code.jquery.com/color/jquery.color-2.1.1.min.js"></script>
<script src="http://danielhagnoul.developpez.com/lib/dvjh/base.js"></script>
<script>
"use strict";
$(function(){
var sens1 = "+",
sens2 = "+",
sens3 = "-";
$( "#btn1" ).on( "click", function(){
$( this ).parent().animate({ "left" : sens1 + "=80rem" }, 3000, function(){
if ( sens1 == "+" ){
sens1 = "-";
} else {
sens1 = "+";
}
});
});
$( "#btn2" ).on( "click", function(){
$( this ).parent().animate({ "left" : sens2 + "=50rem" }, 3000, function(){
if ( sens2 == "+" ){
sens2 = "-";
} else {
sens2 = "+";
}
});
});
$( "#btn3" ).on( "click", function(){
$( this ).parent().animate({ "left" : sens3 + "=55rem" }, 3000, function(){
if ( sens3 == "+" ){
sens3 = "-";
} else {
sens3 = "+";
}
});
});
});
</script>
</body>
</html> |
Partager