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 :

Centrer les images dans un carousel


Sujet :

jQuery

  1. #1
    Membre expérimenté
    Avatar de Luke spywoker
    Homme Profil pro
    Etudiant informatique autodidacte
    Inscrit en
    Juin 2010
    Messages
    1 077
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Etudiant informatique autodidacte

    Informations forums :
    Inscription : Juin 2010
    Messages : 1 077
    Points : 1 742
    Points
    1 742
    Par défaut Centrer les images dans un carousel
    Salut les javascripteurs jQuery,
    Ayant découvert un plug-in de jQuery aujourd'hui: jcarousel, qui permet de faire défiler des images dans une <div> avec bouton gauche droite. Les images sont stocker dans une <ul></ul>, comme <li><img></li>. mais le problème est que ce plug-in est fait plutot fait pour faire défiler plusieurs images dans la zone d'affichage mais il est possible en jouant avec les dimensions que la zone d'affichage n'en contienne qu'une et de faire défiler les suivantes.
    J'ai modifier un document HTML exemple du plug-in et j'arrive a faire n'apparaitre qu'une seule image dans la zone d'affichage, mais les images ne devant pas etre de la meme taile, elle ne sont pas centrer...!!! Toutes les propriétées CSS qui contienne -align y sont passer et j'ai meme modifer les Skins CSS je n'arrive pas a centrer les images. Si quelqu'un connait bien le plug-in Merci de poster.
    Voici le code exemple légèrement modifier:
    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
    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
     
    <!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" xml:lang="en-us">
    <head>
    <title>jCarousel Examples</title>
    <link href="../style.css" rel="stylesheet" type="text/css" />
    <!--
      jQuery library
    -->
    <script type="text/javascript" src="../lib/jquery-1.4.2.min.js"></script>
    <!--
      jCarousel library
    -->
    <script type="text/javascript" src="../lib/jquery.jcarousel.min.js"></script>
    <!--
      jCarousel skin stylesheet
    -->
    <link rel="stylesheet" type="text/css" href="../skins/tango/skin.css" />
     
    <style type="text/css">
     
    /**
     * Overwrite for having a carousel with dynamic width.
     */
    .jcarousel-skin-tango .jcarousel-container-horizontal {
        width: 100px;
    }
     
    .jcarousel-skin-tango .jcarousel-clip-horizontal {
        width: 75px;
     
    }
     
    #display {
        clear: both;
        width: auto;
        height: 250px;
        overflow: scroll;
        border: 1px solid #666;
        background-color: #fcfcfc;
        padding: 10px;
    }
    </style>
     
    <script type="text/javascript">
     
    /**
     * This is the callback function which receives notification
     * about the state of the next button.
     */
    function mycarousel_buttonNextCallback(carousel, button, enabled) {
        display('Next button is now ' + (enabled ? 'enabled' : 'disabled'));
    };
     
    /**
     * This is the callback function which receives notification
     * about the state of the prev button.
     */
    function mycarousel_buttonPrevCallback(carousel, button, enabled) {
        display('Prev button is now ' + (enabled ? 'enabled' : 'disabled'));
    };
     
    /**
     * This is the callback function which receives notification
     * right after initialisation of the carousel
     */
    function mycarousel_initCallback(carousel, state) {
        if (state == 'init')
            display('Carousel initialised');
        else if (state == 'reset')
            display('Carousel reseted');
    };
     
    /**
     * This is the callback function which receives notification
     * right after reloading of the carousel
     */
    function mycarousel_reloadCallback(carousel) {
        display('Carousel reloaded');
    };
     
    /**
     * This is the callback function which receives notification
     * when an item becomes the first one in the visible range.
     */
    function mycarousel_itemFirstInCallback(carousel, item, idx, state) {
        display('Item #' + idx + ' is now the first item');
    };
     
    /**
     * This is the callback function which receives notification
     * when an item is no longer the first one in the visible range.
     */
    function mycarousel_itemFirstOutCallback(carousel, item, idx, state) {
        display('Item #' + idx + ' is no longer the first item');
    };
     
    /**
     * This is the callback function which receives notification
     * when an item becomes the first one in the visible range.
     */
    function mycarousel_itemLastInCallback(carousel, item, idx, state) {
        display('Item #' + idx + ' is now the last item');
    };
     
    /**
     * This is the callback function which receives notification
     * when an item is no longer the first one in the visible range.
     */
    function mycarousel_itemLastOutCallback(carousel, item, idx, state) {
        display('Item #' + idx + ' is no longer the last item');
    };
     
    /**
     * This is the callback function which receives notification
     * when an item becomes the first one in the visible range.
     * Triggered before animation.
     */
    function mycarousel_itemVisibleInCallbackBeforeAnimation(carousel, item, idx, state) {
        // No animation on first load of the carousel
        if (state == 'init')
            return;
     
        jQuery('img', item).fadeIn('slow');
    };
     
    /**
     * This is the callback function which receives notification
     * when an item becomes the first one in the visible range.
     * Triggered after animation.
     */
    function mycarousel_itemVisibleInCallbackAfterAnimation(carousel, item, idx, state) {
        display('Item #' + idx + ' is now visible');
    };
     
    /**
     * This is the callback function which receives notification
     * when an item is no longer the first one in the visible range.
     * Triggered before animation.
     */
    function mycarousel_itemVisibleOutCallbackBeforeAnimation(carousel, item, idx, state) {
        jQuery('img', item).fadeOut('slow');
    };
     
    /**
     * This is the callback function which receives notification
     * when an item is no longer the first one in the visible range.
     * Triggered after animation.
     */
    function mycarousel_itemVisibleOutCallbackAfterAnimation(carousel, item, idx, state) {
        display('Item #' + idx + ' is no longer visible');
    };
     
    /**
     * Helper function for printing out debug messages.
     * Not needed for jCarousel.
     */
    var row = 1;
    function display(s) {
        // Log to Firebug (getfirebug.com) if available
        //if (window.console != undefined && typeof window.console.log == 'function')
          //  console.log(s);
     
        if (row >= 1000)
            var r = row;
        else if (row >= 100)
            var r = '&nbsp;' + row;
        else if (row >= 10)
            var r = '&nbsp;&nbsp;' + row;
        else
            var r = '&nbsp;&nbsp;&nbsp;' + row;
     
        jQuery('#display').html(jQuery('#display').html() + r + ': ' + s + '<br />').get(0).scrollTop += 10000;
     
        row++;
    };
     
    jQuery(document).ready(function() {
        jQuery('#mycarousel').jcarousel({
            scroll: 1,
     
            initCallback:   mycarousel_initCallback,
            reloadCallback: mycarousel_reloadCallback,
     
            buttonNextCallback:   mycarousel_buttonNextCallback,
            buttonPrevCallback:   mycarousel_buttonPrevCallback,
     
            itemFirstInCallback:  mycarousel_itemFirstInCallback,
            itemFirstOutCallback: mycarousel_itemFirstOutCallback,
            itemLastInCallback:   mycarousel_itemLastInCallback,
            itemLastOutCallback:  mycarousel_itemLastOutCallback,
            itemVisibleInCallback: {
                onBeforeAnimation: mycarousel_itemVisibleInCallbackBeforeAnimation,
                onAfterAnimation:  mycarousel_itemVisibleInCallbackAfterAnimation
            },
            itemVisibleOutCallback: {
                onBeforeAnimation: mycarousel_itemVisibleOutCallbackBeforeAnimation,
                onAfterAnimation:  mycarousel_itemVisibleOutCallbackAfterAnimation
            }
        });
    });
     
    </script>
     
    </head>
    <body>
    <div id="wrap">
      <h1>jCarousel</h1>
      <h2>Riding carousels with jQuery</h2>
     
      <h3>Carousel illustrating the callback functions</h3>
      <p>
        This carousel has registered all available callback functions and displays
        information about the state of the items and buttons. Additionally the width
        of the carousel is set to auto. Resize the browser window and see what happens.
      </p>
     
     
      <ul id="mycarousel" class="jcarousel-skin-tango">
        <li><img src="http://static.flickr.com/66/199481236_dc98b5abb3_s.jpg" width="100" height="100" alt="" /></li>
        <li><img src="http://static.flickr.com/75/199481072_b4a0d09597_s.jpg" width="75" height="75" alt="" /></li>
        <li><img src="http://static.flickr.com/57/199481087_33ae73a8de_s.jpg" width="50" height="50" alt="" /></li>
        <li><img src="http://static.flickr.com/77/199481108_4359e6b971_s.jpg" width="25" height="25" alt="" /></li>
     
      </ul>
     
      <p id="display"></p>
     
    </div>
    </body>
    </html>
    PS: J'ai modifier le static_callbacks.html, pensant que ca conviendrai mieux que le special_flexible.html car je désire redimensionner mes images moi meme.

    Il est peut-etre impossible de centrer les images, celle-çi étant contenues dans une <ul><li><img></li></ul>, dans ce cas,merci de m'en informer et si vous connaissez d'autres plug-in permettant de faire un défilement d'image merci de poster.

  2. #2
    Membre expérimenté
    Avatar de Luke spywoker
    Homme Profil pro
    Etudiant informatique autodidacte
    Inscrit en
    Juin 2010
    Messages
    1 077
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Etudiant informatique autodidacte

    Informations forums :
    Inscription : Juin 2010
    Messages : 1 077
    Points : 1 742
    Points
    1 742
    Par défaut
    Bon comme personne a répondu a ma question j'ai developpé une gallerie d'afichage d'images moi-même en javascript avec jquery-ui.

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. plugin jCarousel. Centrer les images dans la page
    Par miltonis dans le forum jQuery
    Réponses: 13
    Dernier message: 30/06/2010, 22h13
  2. [SWT] centrer les composants dans une vue
    Par LoloBebop dans le forum SWT/JFace
    Réponses: 2
    Dernier message: 07/06/2006, 11h34
  3. Redimensionner les images dans un tableau
    Par cyke37 dans le forum Général JavaScript
    Réponses: 10
    Dernier message: 13/10/2005, 20h19
  4. [JTable] centrer les donnees dans les cellules
    Par cmoa59 dans le forum Composants
    Réponses: 5
    Dernier message: 20/05/2005, 12h35
  5. les images dans une base de données
    Par houhou dans le forum Bases de données
    Réponses: 8
    Dernier message: 22/06/2004, 15h27

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