IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

jQuery Discussion :

slide show jquery plug in


Sujet :

jQuery

  1. #1
    Membre à l'essai
    Profil pro
    Inscrit en
    Septembre 2012
    Messages
    28
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Septembre 2012
    Messages : 28
    Points : 23
    Points
    23
    Par défaut slide show jquery plug in
    Bonjour,

    j'ai utilisé un plug in pour un slide show jquery sur le site web carousselfred

    lorsque je code rien que le slide show sur un nouveau document html il fonctionne

    bien sur dans le dossier du site web je mets les fichiers jquery nécessaires avec les liens pour pouvoir faire référence

    donc ça marche pas de prob

    le code est :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Document sans nom</title>
    <style type="text/css">
     
    .carrousel {width: 532px; height: 300px;}
    .carrousel .slide {display: block; width: 532px; height: 300px; position: relative;}
    .carrousel .slide .info {display: block; color: #FFF; bottom: 0; left: 0; right: 0; background-color: rgba [(0,0,0,0.8)]; position: absolute; height: 40px; line-height: 40px; text-indent: 20px;}
     
    </style>
    </head>
     
    <body>
    <div class="carrousel" id="carrousel">
     
        <div class="slide">
        <a href= "#">
            <img src="image1.png" width="532" height="300" />
        </a>
        </div>
     
        <div class="slide">
        <a href= "#">
            <img src="image2.png"  width="532" height="300" />
        </a>
        </div>
     
        <div class="slide">
        <a href= "#">
            <img src="image3.png" width="532" height="300" />
        </a> 
        </div>
     
        <div class="slide">
        <a href= "#">
            <img src="image4.png" width="532" height="300" />
        </a>
        </div>
     
        <div class="slide">
        <a href= "#">
            <img src="image5.png" width="532" height="300" />
        </a> 
        </div>
     
    </div>
     
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
    <script type="text/javascript" src="caroufredsel.js"></script>
    <script type="text/javascript">
    $('#carrousel').caroufredsel({
        direction:'up',
        scroll: {
            fx: 'crossfade'
        },
    });
    </script>
     
     
    </body>
     
    </html>
    par contre lorsque je récupére le code css html et javascript pour les insérer dans ma page d'accueil de mon site et bien les images ne défilent pas

    bien sur dans le dossier du site web je mets les fichiers jquery nécessaires avec les liens pour pouvoir faire référence

    ça a fonctionné au début et la ça marche plus pourquoi je ne sais pas

    pourtant le code est identique

    je ne comprend pas quel est le prob pourriez vous m'aider

    en vous remerciant

  2. #2
    Rédacteur

    Avatar de danielhagnoul
    Homme Profil pro
    Étudiant perpétuel
    Inscrit en
    Février 2009
    Messages
    6 389
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 74
    Localisation : Belgique

    Informations professionnelles :
    Activité : Étudiant perpétuel
    Secteur : Enseignement

    Informations forums :
    Inscription : Février 2009
    Messages : 6 389
    Points : 22 933
    Points
    22 933
    Billets dans le blog
    125
    Par défaut
    Bonsoir

    ça marche plus pourquoi je ne sais pas
    Avec les informations que vous donnez, je n'en sais pas plus que vous. Quelles sont les erreurs affichées dans la console, touche F12 ?

  3. #3
    Membre à l'essai
    Profil pro
    Inscrit en
    Septembre 2012
    Messages
    28
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Septembre 2012
    Messages : 28
    Points : 23
    Points
    23
    Par défaut
    le fichier index.html ou se trouve le slide show et caroufredsel.js sont dans le même dossier

    il y a même dans le dossier le fichier jquery.js correspondant à la bibliothéque jquery mais bon j'ai mis le lien direct

    je vous donne le code de la page index.html ou doit se dérouler le slide show

    le plus étonnant c'est que lorsque je lance la page dans le navigateur il n'y a pas les cinq images du carroussel l'une en dessous de l'autre ce qui signifie que le carroussel ne fonctionne pas, mais il y a seulement la première image comme si le caroussel allait se lancer, mais rien ne se passe pas de seconde image

    Code html : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
     
    <title>Site Web</title>
    <style type="text/css">
    .carrousel {width: 532px; height: 300px;}
    .carrousel .slide {display: block; width: 532px; height: 300px; position: relative;}
    .carrousel .slide .info {display: block; color: #FFF; bottom: 0; left: 0; right: 0; background-color: rgba [(0,0,0,0.8)]; position: absolute; height: 40px; line-height: 40px; text-indent: 20px;}
    </style>
     
    <style type="text/css">
     
     
    .bleufoncé {
        color: #000066;
    }
    body {
        margin-left: 0px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        background-image: url(images/image-de-fond.png);
        background-repeat: repeat;
    }
    a:link {
        text-decoration: none;
    }
    a:visited {
        text-decoration: none;
    }
    a:hover {
        text-decoration: none;
    }
    a:active {
        text-decoration: none;
    }
     
    </style>
     
     
     
     
    <style type="text/css">
     
    .Style48 {color: #1484C6}
    .Style49 {font-size: 12px; font-family: Arial, Helvetica, sans-serif;}
    .Style54 {color: #1484C6; font-weight: bold; }
    -->
    </style>
    </head>
     
    <body oncontextmenu="return false">
     
    <div align="center" class="Style1">
      <table width="1050" border="1" cellspacing="0" bordercolor="#FFFFFF">
        <tr bordercolor="#999999" bgcolor="#CCCCCC">
          <th width="20" scope="row">&nbsp;</th>
          <td><table width="1054" height="140" border="0" cellspacing="0" bgcolor="#F9F9F9">
            <tr bgcolor="#323232">
              <th height="100" bgcolor="#F9F9F9" scope="row"><div align="left"><a href="../index.html"><img src="titres/Site-Web.png" width="1050" height="100" border="0" /></a>&nbsp;</div></th>
            </tr>
            <tr>
              <th height="40" align="left" valign="middle" bgcolor="#F9F9F9" scope="row"><img src="titres/Sous-Titre-Site-Web.png" width="1050" height="40" /></th>
            </tr>
          </table>
                 <table width="1054" height="300" border="0" cellspacing="0" bordercolor="#F9F9F9" bgcolor="#F9F9F9">
                <tr bgcolor="#F9F9F9">
                <th width="250" bgcolor="#F9F9F9">&nbsp;</th>
                  <th width="800" height="300" bgcolor="#F9F9F9"><div class="carrousel" id="carrousel">
     
    <div class="carrousel" id="carrousel">
     
        <div class="slide">
        <a href= "#">
            <img src="image1.png" width="532" height="300" />
        </a>
        </div>
     
        <div class="slide">
        <a href= "#">
            <img src="image2.png"  width="532" height="300" />
        </a>
        </div>
     
        <div class="slide">
        <a href= "#">
            <img src="image3.png" width="532" height="300" />
        </a>
        </div>
     
        <div class="slide">
        <a href= "#">
            <img src="image4.png" width="532" height="300" />
        </a>
        </div>
     
        <div class="slide">
        <a href= "#">
            <img src="image5.png" width="532" height="300" />
        </a>
        </div>
     
    </div>
     
        </th>
                  <th width="250" height="300" bgcolor="#F9F9F9"><div align="center"><img src="images/photo.png" width="168" height="168" /></div></th>
     
                </tr>
            </table>
            <table width="1054" height="1100" border="0" cellspacing="0" bordercolor="#99CCFF" bgcolor="#F9F9F9">
                <tr bgcolor="#F9F9F9">
                  <th width="260" height="220" align="left" valign="top" bordercolor="#99CCFF" scope="row">
                  </th>
                  <td width="510" rowspan="5" align="center" valign="top">
                    <div align="center"><br />
     
                      <table width="780" border="0" align="center" cellspacing="0" bgcolor="#F9F9F9">
                        <tr>
                          <th width="510" height="20" scope="row"><img src="titres/Sous-Titre-Site-Web.png" width="780" height="80" /></th>
                        </tr>
     
                        <tr>
                          <th>
     
     
    <iframe frameborder="0" scrolling="Auto" width="780" height="1100" marginwidth="0" marginheight="0" src="titres/Sous-Titre-Site-Web.png" align="center"></iframe>
    <br />
    <div align="left"></div>
                          </th>
                        </tr>
     
     
                        <tr>
     
                        </tr>
                        <tr>
     
                        </tr>
                        <tr>
     
                        </tr>
     
                        <tr>
     
                        </tr>
                        <tr>
                          <th></th>
                        </tr>
                        <tr bordercolor="#99CCFF" bgcolor="#CCCCCC">
                          <th></th>
                        </tr>
                        <tr bordercolor="#99CCFF" bgcolor="#CCCCCC">
                          <th width="510" height="20" align="left" valign="top" bgcolor="#F9F9F9" scope="row">&nbsp;</th>
                        </tr>
                      </table>
                  </div></td>
                  <td width="260" rowspan="5" align="center" valign="top"><table width="260" height="1000" border="0" align="right" cellspacing="0" bordercolor="#99CCFF" bgcolor="#F9F9F9">
                    <tr>
                          <th width="260" height="60" scope="row">
     
                          <h2 align="center" class="bleufonc&eacute;">Inscription Newsletter</h2>
     
    <form
        method="post"
        action="http://newsletter.sharedbox.com/user/process.php?sExternalid=58f24c7830fc946c07fe0461eea2e769"
        name="signup"
        accept-charset="utf-8"
    >
    <fieldset>
    <div align="justify" class="bleumention">
      <div align="center">
        <legend class="bleumention">
    Les Ev&eacute;nements et Salons, <br />
    Directement dans Votre Boite Mail.</legend>
    </div>
     
      <!--   Email field must be named "Email" -->
    </div>
    <div class="bleufonc&eacute;">
      <label for="email" class="bleufonc&eacute;"><strong>Votre Email:</strong></label>
    <input type="text" name="Email" id="email" maxlength="60" />
    </div>
     
    </fieldset>
     
    <div id="buttons">
     
    <input type="hidden" name="pommo_signup" value="true" />
    <input type="submit" value="Envoyer" />
     
    </div>
     
    </form></th>
                    </tr>
                      <th width="260" height="40" scope="row"></th>
                    </tr>
                    <tr>
                      <th width="260" height="40" scope="row"><img src="titres/Sous-Titre-Site-Web.png" width="126" height="168" /></th>
                    </tr>
                    <tr>
                      <th width="260" height="40" scope="row"></th>
                    </tr>
                    <tr>
                      <th width="260" height="40" scope="row"></th>
                    </tr>
                    <tr>
                      <th width="260" height="40" scope="row"></th>
                    </tr>
                    <tr>
                      <th width="260" height="40" scope="row"></th>
                    </tr>
                    <tr>
                      <th width="260" height="40" scope="row"></th>
                    </tr>
                    <tr>
                      <th>
    </th>
                    </tr>
     
                    <tr>
     
                    </tr>
     
     
     
     
                    <tr>
                      <th width="260" height="40" scope="row"><div align="right"><img src="titres/Sous-Titre-Site-Web.png" width="168" height="113" /></div></th>
                    </tr>
                    <tr>
                      <th width="260" height="40" scope="row"></th>
                    </tr>
                    <tr>
                      <th width="260" height="40" scope="row"></th>
                    </tr>
                    <tr>
                      <th width="260" height="40" scope="row"></th>
                    </tr>
                    <tr>
                      <th width="260" height="40" scope="row"></th>
                    </tr>
                    <tr>
                      <th width="260" height="40" scope="row"></th>
                    </tr>
                    <tr>
                      <th width="260" height="40" scope="row"><img src="titres/Sous-Titre-Site-Web.png" width="124" height="185" /></th>
                    </tr>
     
                    <tr>
     
                    </tr>
                    <tr>
     
                    </tr>
     
                    <tr>
                      <th>&nbsp;</th>
                    </tr>
                    <tr>
     
                    </tr>
                  </table></td>
            </table>
              <table width="1054" border="0" cellspacing="0" bordercolor="#99CCFF" bgcolor="#F9F9F9">
                <tr bgcolor="#FFFFFF">
                  <th height="25" align="left" valign="middle" bgcolor="#CBE2F0" scope="row"><div align="justify" class="Style38">
     
                    <blockquote>
     
                    </blockquote>
                  </div></th>
              </tr>
                <tr bgcolor="#CBE2F0">
                  <th height="25" align="center" valign="middle" class="bleumention" scope="row"><br />
                  <span class="Style46"> <span class="Style48">All Rights Reserved</span> </span></th>
                </tr>
                <tr bgcolor="#FFFFFF">
                  <th height="25" align="right" valign="middle" bgcolor="#CBE2F0" scope="row"><span class="bleumention Style48"><a href="index.html" target="_parent" class="Style54">Accueil</a> </span><span class="Style48">| <span class="Style49"><a href="publicite.html" target="_parent" class="Style54">Publicit&eacute;</a> </span>| <span class="Style49"><a href="contact2.html" target="_parent" class="Style54">Contact</a></span> | <span class="Style49"><a href="recommander-site-web.html" target="_parent" class="Style54">Recommander ce site</a></span> | <span class="Style49"><a href="mentions-legales.html" target="_parent" class="Style54">Mentions L&eacute;gales</a> </span></span></th>
                </tr>
          </table></td>
          <td width="20">&nbsp;</td>
        </tr>
      </table>
    </div>
     
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
    <script type="text/javascript" src="caroufredsel.js" ></script>
    <script type="text/javascript">
    $('#carrousel').caroufredsel({
        direction:'up',
        scroll: {
            fx: 'crossfade'
        },
    });
    </script>
     
    </body>
    </html>

  4. #4
    Rédacteur

    Avatar de danielhagnoul
    Homme Profil pro
    Étudiant perpétuel
    Inscrit en
    Février 2009
    Messages
    6 389
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 74
    Localisation : Belgique

    Informations professionnelles :
    Activité : Étudiant perpétuel
    Secteur : Enseignement

    Informations forums :
    Inscription : Février 2009
    Messages : 6 389
    Points : 22 933
    Points
    22 933
    Billets dans le blog
    125
    Par défaut
    Bonjour

    Vos codes (html, css, js) sont très différents de celui de la démonstration. Pour la tester, il suffit de copier-coller ma page de test :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    <!DOCTYPE html>
    <html lang="fr" dir="ltr">
    <head>
    	<meta charset="utf-8">
    	<meta name="viewport" content="initial-scale=1.0">
    	<meta name="author" content="Daniel Hagnoul">
    	<title>Forum jQuery</title>
    	<script src="http://cdnjs.cloudflare.com/ajax/libs/headjs/0.99/head.min.js"></script>
    	<script>
    		//"use strict";
     
    		head.js( 
    			"http://d3js.org/d3.v3.min.js",
    			"http://danielhagnoul.developpez.com/lib/VerbalExpressions.js",
    			"http://code.jquery.com/jquery-2.0.3.min.js",
    			"http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/i18n/jquery-ui-i18n.min.js",
    			"http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js",
    			"http://cdnjs.cloudflare.com/ajax/libs/jquery.caroufredsel/6.2.1/jquery.carouFredSel.packed.js",
    			"http://danielhagnoul.developpez.com/lib/dvjh/d3Base.js", function(){
     
    $( function(){
     
    	$( "#foo2" ).carouFredSel({
    		"circular" : false,
    		"infinite" : false,
    		"auto" 	: false,
    		"prev"	: {	
    			"button" : "#foo2_prev",
    			"key" : "left"
    		},
    		"next"	: { 
    			"button" : "#foo2_next",
    			"key" : "right"
    		},
    		"pagination" : "#foo2_pag"
    	});
     
    });
     
    $( window ).load( function(){
     
    });
     
    		});
    	</script>
    	<link href='http://fonts.googleapis.com/css?family=Sofia|Ubuntu:400|Kreon'>
    	<link rel="stylesheet" href="http://danielhagnoul.developpez.com/styles/dvjhRemBase.css">
    	<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/sunny/jquery-ui.min.css">
    	<style>
    		/* TEST -- Nota bene : ici 1 rem est égal à 1 px, voir dvjhRemBase.css */
     
    		.image_carousel {
    			padding: 15px 0 15px 40px;
    			position: relative;
    			width: 600px;
    		}
    		.image_carousel img {
    			border: 1px solid #ccc;
    			background-color: white;
    			padding: 9px;
    			margin: 7px;
    			display: block;
    			float: left;
    		}
    		a.prev, a.next {
    			background: url("http://caroufredsel.dev7studios.com/images/miscellaneous_sprite.png") no-repeat transparent;
    			width: 45px;
    			height: 50px;
    			display: block;
    			position: absolute;
    			top: 85px;
    		}
    		a.prev {			left: -22px;
    							background-position: 0 0; }
    		a.prev:hover {		background-position: 0 -50px; }
    		a.prev.disabled {	background-position: 0 -100px !important;  }
    		a.next {			right: -22px;
    							background-position: -50px 0; }
    		a.next:hover {		background-position: -50px -50px; }
    		a.next.disabled {	background-position: -50px -100px !important;  }
    		a.prev.disabled, a.next.disabled {
    			cursor: default;
    		}
     
    		a.prev span, a.next span {
    			display: none;
    		}
    		.pagination {
    			text-align: center;
    		}
    		.pagination a {
    			background: url("http://caroufredsel.dev7studios.com/images/miscellaneous_sprite.png") 0 -300px no-repeat transparent;
    			width: 15px;
    			height: 15px;
    			margin: 0 5px 0 0;
    			display: inline-block;
    		}
    		.pagination a.selected {
    			background-position: -25px -300px;
    			cursor: default;
    		}
    		.pagination a span {
    			display: none;
    		}
    		.clearfix {
    			float: none;
    			clear: both;
    		}
     
    	</style>
    </head>
    <body>
    	<header>
    		<hgroup>
    			<h1>Forum jQuery</h1>
    			<h2>
    				<a href="">Lien</a>
    			</h2>
    		</hgroup>
    	</header>
    	<section class="conteneur">
     
    		<div class="image_carousel">
    			<div id="foo2">
    				<img src="http://caroufredsel.dev7studios.com/examples/images/small/basketball.jpg" alt="basketball" width="140" height="140" />
    				<img src="http://caroufredsel.dev7studios.com/examples/images/small/beachtree.jpg" alt="beachtree" width="140" height="140" />
    				<img src="http://caroufredsel.dev7studios.com/examples/images/small/cupcackes.jpg" alt="cupcackes" width="140" height="140" />
    				<img src="http://caroufredsel.dev7studios.com/examples/images/small/hangmat.jpg" alt="hangmat" width="140" height="140" />
    				<img src="http://caroufredsel.dev7studios.com/examples/images/small/new_york.jpg" alt="new york" width="140" height="140" />
    				<img src="http://caroufredsel.dev7studios.com/examples/images/small/laundry.jpg" alt="laundry" width="140" height="140" />
    				<img src="http://caroufredsel.dev7studios.com/examples/images/small/mom_son.jpg" alt="mom son" width="140" height="140" />
    				<img src="http://caroufredsel.dev7studios.com/examples/images/small/picknick.jpg" alt="picknick" width="140" height="140" />
    				<img src="http://caroufredsel.dev7studios.com/examples/images/small/shoes.jpg" alt="shoes" width="140" height="140" />
    				<img src="http://caroufredsel.dev7studios.com/examples/images/small/paris.jpg" alt="paris" width="140" height="140" />
    				<img src="http://caroufredsel.dev7studios.com/examples/images/small/sunbading.jpg" alt="sunbading" width="140" height="140" />
    				<img src="http://caroufredsel.dev7studios.com/examples/images/small/yellow_couple.jpg" alt="yellow couple" width="140" height="140" />
    			</div>
    			<div class="clearfix"></div>
    			<a class="prev" id="foo2_prev" href="#"><span>prev</span></a>
    			<a class="next" id="foo2_next" href="#"><span>next</span></a>
    			<div class="pagination" id="foo2_pag"></div>
    		</div>
     
    	</section>
    	<footer itemscope itemtype="http://danielhagnoul.developpez.com/">
    		<time datetime="2013-09-08T00:10:19.400+02:00" pubdate>2013-09-08T00:10:19.400+02: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>
    </body>
    </html>

Discussions similaires

  1. slide show jquery avec effet de fondu
    Par barbato dans le forum jQuery
    Réponses: 2
    Dernier message: 16/08/2013, 11h50
  2. slide show jquery.
    Par vins1892 dans le forum jQuery
    Réponses: 1
    Dernier message: 27/08/2011, 14h57
  3. slide show avec php
    Par fatjoe dans le forum Flash
    Réponses: 2
    Dernier message: 18/05/2008, 16h39
  4. [FLASH 8] Pour un Slide show très simple
    Par obatala dans le forum Flash
    Réponses: 2
    Dernier message: 04/04/2006, 16h34

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo