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

JavaScript Discussion :

Réaliser un effet sur bouton


Sujet :

JavaScript

  1. #1
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Juin 2004
    Messages
    34
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2004
    Messages : 34
    Points : 25
    Points
    25
    Par défaut Réaliser un effet sur bouton
    bonjour,

    j'ai un script avec un effet sur le bouton quand je clique cela ne marche que sur le premier bouton et j'aimerai que cet effet fonctionne en cliquant sur chaque bouton. Quelqu'un aurait un peu de temps pour moi ? merci

    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
    <!DOCTYPE html>
    <html lang="en" >
    <head>
      <meta charset="UTF-8">
      <title>effet sur bouton</title>
    </head>
    <style>
    @import 'https://fonts.googleapis.com/css?family=Source+Sans+Pro:300';
    * {
      font-family: "Source Sans Pro", sans-serif;
      box-sizing: border-box;
      font-weight: 300;
      padding: 10;
      margin: 10;
    }
    .btn-wrapper {
      position: fixed;
      top: calc(50%);
      left: 0;
      width: 100%;
      text-align: center;
    }
     
    .btn {
      display: inline-block;
      box-shadow: none;
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none;
      border: 0;
      outline: 0;
      background-color: #00f0a8;
      height: 45px;
      line-height: 42px;
      padding: 0 30px;
      font-size: 20px;
      border-radius: 30px;
      color: #282d32;
      cursor: pointer;
      transition: all 0.5s;
      transition-timing-function: cubic-bezier(0.2, 3, 0.4, 1);
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
    }
    .btn:hover {
      transform: scale(1.1, 1.1);
    }
    .btn:active {
      transform: scale(1.05, 1.05);
    }
    </style>
    <body>
    <!-- partial:index.partial.html -->
    <div class="btn-wrapper">
    	<button type="button" class="btn">off</button>
    	<button type="button" class="btn">off</button>
    	<button type="button" class="btn">off</button>
    	<button type="button" class="btn">off</button>
    	<button type="button" class="btn">off</button>
    </div>
    <canvas id="canvas"></canvas>
    <!-- partial -->
     
    <script>
    var c = document.getElementById('canvas');
    var ctx = c.getContext('2d');
    var btn = document.getElementsByClassName('btn')[0];
     
    c.width = window.innerWidth;
    c.height = window.innerHeight;
     
    var mouseX = c.width / 2;
    var mouseY = c.height / 2;
    var txtPosition = 0;
     
    var particles = [];
     
    btn.addEventListener('mouseup', function(e){
            mouseX = e.clientX;
            mouseY = e.clientY;
            
            createParticles();
            changeText();
    });
     
    draw();
     
    function draw(){
            
            drawBg();
            incParticles();
            drawParticles();
            
            window.requestAnimationFrame(draw);
            
    }
     
    function drawBg(){
            ctx.rect(0, 0, c.width, c.height);
            ctx.fillStyle = "rgb(40, 45, 50)";
            ctx.fill();
    }
     
    function drawParticles(){
            for(i = 0; i < particles.length; i++){
                    ctx.beginPath();
                    ctx.arc(particles[i].x,
                                             particles[i].y,
                                             particles[i].size,
                                             0,
                                             Math.PI * 2);
                    ctx.fillStyle = particles[i].color;
                    ctx.closePath();
                    ctx.fill();
            }
    }
     
    function incParticles(){
            for(i = 0; i < particles.length; i++){
                    particles[i].x += particles[i].velX;
                    particles[i].y += particles[i].velY;
                    
                    particles[i].size = Math.max(0, (particles[i].size - .05));
                    
                    if(particles[i].size === 0){
                            particles.splice(i, 1);
                    }
            }
    }
     
    function createParticles(){
            for(i = 0; i < 30; i++){
                    particles.push({
                            x: mouseX,
                            y: mouseY,
                            size: parseInt(Math.random() * 10),
                            color: 'rgb(' + ranRgb() + ')',
                            velX: ranVel(),
                            velY: ranVel()
                    });
            }
    }
     
    function ranRgb(){
            var colors = [
                    '255, 122, 206',
                    '0, 157, 255',
                    '0, 240, 168',
                    '0, 240, 120'
            ];
            
            var i = parseInt(Math.random() * 10);
            
            return colors[i];
    }
     
    function ranVel(){
            var vel = 0;
            
            if(Math.random() < 0.5){
                    vel = Math.abs(Math.random());
            } else {
                    vel = -Math.abs(Math.random());
            }
                            
            return vel;
    }
     
    // Text
     
    var btnTxt = [
            'on',
            'off'
    ];
     
    function changeText(){
            if(txtPosition !== btnTxt.length-1){
                    btn.innerHTML = btnTxt[txtPosition];
                    txtPosition += 1;
            } else {
                    btn.innerHTML = btnTxt[txtPosition];
                    txtPosition = 0;
            }
    }
    </script>
     
    </body>
    </html>

  2. #2
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Juin 2004
    Messages
    34
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2004
    Messages : 34
    Points : 25
    Points
    25
    Par défaut
    j'ai trouvé mais n'y aurait-il pas plus simple ?

    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
    <!DOCTYPE html>
    <html lang="en" >
    <head>
      <meta charset="UTF-8">
      <title>CodePen - The uncomfortable btn</title>
    </head>
    <style>
    @import 'https://fonts.googleapis.com/css?family=Source+Sans+Pro:300';
    * {
      font-family: "Source Sans Pro", sans-serif;
      box-sizing: border-box;
      font-weight: 300;
      padding: 10;
      margin: 10;
    }
    .btn-wrapper {
      position: fixed;
      top: calc(50%);
      left: 0;
      width: 100%;
      text-align: center;
    }
     
    .btn {
      display: inline-block;
      box-shadow: none;
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none;
      border: 0;
      outline: 0;
      background-color: #00f0a8;
      height: 45px;
      line-height: 42px;
      padding: 0 30px;
      font-size: 20px;
      border-radius: 30px;
      color: #282d32;
      cursor: pointer;
      transition: all 0.5s;
      transition-timing-function: cubic-bezier(0.2, 3, 0.4, 1);
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
    }
    .btn:hover {
      transform: scale(1.1, 1.1);
    }
    .btn:active {
      transform: scale(1.05, 1.05);
    }
    </style>
    <body>
    <!-- partial:index.partial.html -->
    <div class="btn-wrapper">
    	<button type="button" class="btn n1">off</button>
    	<button type="button" class="btn n2">off</button>
    	<button type="button" class="btn n3">off</button>
    	<button type="button" class="btn n4">off</button>
    	<button type="button" class="btn n5">off</button>
    </div>
    <canvas id="canvas"></canvas>
    <!-- partial -->
     
    <script>
    var c = document.getElementById('canvas');
    var ctx = c.getContext('2d');
    var btn1 = document.getElementsByClassName('n1')[0];
    var btn2 = document.getElementsByClassName('n2')[0];
    var btn3 = document.getElementsByClassName('n3')[0];
    var btn4 = document.getElementsByClassName('n4')[0];
    var btn5 = document.getElementsByClassName('n5')[0];
     
    c.width = window.innerWidth;
    c.height = window.innerHeight;
     
    var mouseX = c.width / 2;
    var mouseY = c.height / 2;
    var txtPosition1 = 0;
    var txtPosition2 = 0;
    var txtPosition3 = 0;
    var txtPosition4 = 0;
    var txtPosition5 = 0;
     
    var particles = [];
     
    btn1.addEventListener('mouseup', function(e){
            mouseX = e.clientX;
            mouseY = e.clientY;
            createParticles();
            changeText(1);
    });
    btn2.addEventListener('mouseup', function(e){
            mouseX = e.clientX;
            mouseY = e.clientY;
            createParticles();
            changeText(2);
    });
    btn3.addEventListener('mouseup', function(e){
            mouseX = e.clientX;
            mouseY = e.clientY;
            createParticles();
            changeText(3);
    });
    btn4.addEventListener('mouseup', function(e){
            mouseX = e.clientX;
            mouseY = e.clientY;
            createParticles();
            changeText(4);
    });
    btn5.addEventListener('mouseup', function(e){
            mouseX = e.clientX;
            mouseY = e.clientY;
            createParticles();
            changeText(5);
    });
     
    draw();
     
    function draw(){
            
            drawBg();
            incParticles();
            drawParticles();
            
            window.requestAnimationFrame(draw);
            
    }
     
    function drawBg(){
            ctx.rect(0, 0, c.width, c.height);
            ctx.fillStyle = "rgb(40, 45, 50)";
            ctx.fill();
    }
     
    function drawParticles(){
            for(i = 0; i < particles.length; i++){
                    ctx.beginPath();
                    ctx.arc(particles[i].x,
                                             particles[i].y,
                                             particles[i].size,
                                             0,
                                             Math.PI * 2);
                    ctx.fillStyle = particles[i].color;
                    ctx.closePath();
                    ctx.fill();
            }
    }
     
    function incParticles(){
            for(i = 0; i < particles.length; i++){
                    particles[i].x += particles[i].velX;
                    particles[i].y += particles[i].velY;
                    
                    particles[i].size = Math.max(0, (particles[i].size - .05));
                    
                    if(particles[i].size === 0){
                            particles.splice(i, 1);
                    }
            }
    }
     
    function createParticles(){
            for(i = 0; i < 30; i++){
                    particles.push({
                            x: mouseX,
                            y: mouseY,
                            size: parseInt(Math.random() * 10),
                            color: 'rgb(' + ranRgb() + ')',
                            velX: ranVel(),
                            velY: ranVel()
                    });
            }
    }
     
    function ranRgb(){
            var colors = [
                    '255, 122, 206',
                    '0, 157, 255',
                    '0, 240, 168',
                    '0, 240, 120'
            ];
            
            var i = parseInt(Math.random() * 10);
            
            return colors[i];
    }
     
    function ranVel(){
            var vel = 0;
            
            if(Math.random() < 0.5){
                    vel = Math.abs(Math.random());
            } else {
                    vel = -Math.abs(Math.random());
            }
                            
            return vel;
    }
     
    // Text
     
    var btnTxt = [
            'on',
            'off'
    ];
     
    function changeText(bouton){
            if (bouton=="1")
                    {
                    if(txtPosition1 !== btnTxt.length-1){
                            btn1.innerHTML = btnTxt[txtPosition1];
                            txtPosition1 += 1;
                            } else {
                            btn1.innerHTML = btnTxt[txtPosition1];
                            txtPosition1 = 0;
                            }
                    }
            if (bouton=="2")
                    {
                    if(txtPosition2 !== btnTxt.length-1){
                            btn2.innerHTML = btnTxt[txtPosition2];
                            txtPosition2 += 1;
                            } else {
                            btn2.innerHTML = btnTxt[txtPosition2];
                            txtPosition2 = 0;
                            }
                    }
            if (bouton=="3")
                    {
                    if(txtPosition3 !== btnTxt.length-1){
                            btn3.innerHTML = btnTxt[txtPosition3];
                            txtPosition3 += 1;
                            } else {
                            btn3.innerHTML = btnTxt[txtPosition3];
                            txtPosition3 = 0;
                            }
                    }
            if (bouton=="4")
                    {
                    if(txtPosition4 !== btnTxt.length-1){
                            btn4.innerHTML = btnTxt[txtPosition4];
                            txtPosition4 += 1;
                            } else {
                            btn4.innerHTML = btnTxt[txtPosition4];
                            txtPosition4 = 0;
                            }
                    }
            if (bouton=="5")
                    {
                    if(txtPosition5 !== btnTxt.length-1){
                            btn5.innerHTML = btnTxt[txtPosition5];
                            txtPosition5 += 1;
                            } else {
                            btn5.innerHTML = btnTxt[txtPosition5];
                            txtPosition5 = 0;
                            }
                    }
    }
    </script>
     
    </body>
    </html>

  3. #3
    Modérateur
    Avatar de ProgElecT
    Homme Profil pro
    Retraité
    Inscrit en
    Décembre 2004
    Messages
    6 077
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 68
    Localisation : France, Haute Savoie (Rhône Alpes)

    Informations professionnelles :
    Activité : Retraité
    Secteur : Communication - Médias

    Informations forums :
    Inscription : Décembre 2004
    Messages : 6 077
    Points : 17 185
    Points
    17 185
    Par défaut
    Salut

    Peut être comme cela
    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
    <!DOCTYPE html>
    <html lang="en" >
    <head>
      <meta charset="UTF-8">
      <title>effet sur bouton</title>
    </head>
    <style>
    @import 'https://fonts.googleapis.com/css?family=Source+Sans+Pro:300';
    * {
      font-family: "Source Sans Pro", sans-serif;
      box-sizing: border-box;
      font-weight: 300;
      padding: 10;
      margin: 10;
    }
    .btn-wrapper {
      position: fixed;
      top: calc(50%);
      left: 0;
      width: 100%;
      text-align: center;
    }
     
    .btn {
      display: inline-block;
      box-shadow: none;
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none;
      border: 0;
      outline: 0;
      background-color: #00f0a8;
      height: 45px;
      line-height: 42px;
      padding: 0 30px;
      font-size: 20px;
      border-radius: 30px;
      color: #282d32;
      cursor: pointer;
      transition: all 0.5s;
      transition-timing-function: cubic-bezier(0.2, 3, 0.4, 1);
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
    }
    .btn:hover {
      transform: scale(1.1, 1.1);
    }
    .btn:active {
      transform: scale(1.05, 1.05);
    }
    </style>
    <body>
    <!-- partial:index.partial.html -->
    <div class="btn-wrapper">
    	<button type="button" class="btn">off</button>
    	<button type="button" class="btn">off</button>
    	<button type="button" class="btn">off</button>
    	<button type="button" class="btn">off</button>
    	<button type="button" class="btn">off</button>
    </div>
    <canvas id="canvas"></canvas>
    <!-- partial -->
     
    <script>
    var c = document.getElementById('canvas');
    var ctx = c.getContext('2d');
    var btns = document.getElementsByClassName('btn');
    //var btn = document.getElementsByClassName('btn')[0];
     
    c.width = window.innerWidth;
    c.height = window.innerHeight;
     
    var mouseX = c.width / 2;
    var mouseY = c.height / 2;
    //var txtPosition = 0;
     
    var particles = [];
    // boucle sur la collection bouton de class 'btn' 
    for (let i = 0, iMax  = btns.length-1; i <= iMax; i++) {
            btns[i].addEventListener('mouseup', function(e){
            mouseX = e.clientX;
            mouseY = e.clientY;
            
            createParticles();
            changeText(this); // <ajout du paramètre élément déclencheur 
    });
    }
     
    draw();
     
    function draw(){
            
            drawBg();
            incParticles();
            drawParticles();
            
            window.requestAnimationFrame(draw);
            
    }
     
    function drawBg(){
            ctx.rect(0, 0, c.width, c.height);
            ctx.fillStyle = "rgb(40, 45, 50)";
            ctx.fill();
    }
     
    function drawParticles(){
            for(i = 0; i < particles.length; i++){
                    ctx.beginPath();
                    ctx.arc(particles[i].x,
                                             particles[i].y,
                                             particles[i].size,
                                             0,
                                             Math.PI * 2);
                    ctx.fillStyle = particles[i].color;
                    ctx.closePath();
                    ctx.fill();
            }
    }
     
    function incParticles(){
            for(i = 0; i < particles.length; i++){
                    particles[i].x += particles[i].velX;
                    particles[i].y += particles[i].velY;
                    
                    particles[i].size = Math.max(0, (particles[i].size - .05));
                    
                    if(particles[i].size === 0){
                            particles.splice(i, 1);
                    }
            }
    }
     
    function createParticles(){
            for(i = 0; i < 30; i++){
                    particles.push({
                            x: mouseX,
                            y: mouseY,
                            size: parseInt(Math.random() * 10),
                            color: 'rgb(' + ranRgb() + ')',
                            velX: ranVel(),
                            velY: ranVel()
                    });
            }
    }
     
    function ranRgb(){
            var colors = [
                    '255, 122, 206',
                    '0, 157, 255',
                    '0, 240, 168',
                    '0, 240, 120'
            ];
            
            var i = parseInt(Math.random() * 10);
            
            return colors[i];
    }
     
    function ranVel(){
            var vel = 0;
            
            if(Math.random() < 0.5){
                    vel = Math.abs(Math.random());
            } else {
                    vel = -Math.abs(Math.random());
            }
                            
            return vel;
    }
     
    // Text
     
    var btnTxt = [
            'on',
            'off'
    ];
     
    function changeText(elem){
            //if(txtPosition !== btnTxt.length-1){
                    if(elem.textContent !== 'off'){
                    elem.textContent = 'off';
                    //txtPosition += 1;
            } else {
                    elem.textContent = 'on';
                    //txtPosition = 0;
            }
    }
    </script>
     
    </body>
    </html>
    Soyez sympa, pensez -y
    Balises[CODE]...[/CODE]
    Balises[CODE=NomDuLangage]...[/CODE] quand vous mettez du code d'un autre langage que celui du forum ou vous postez.
    Balises[C]...[/C] code intégré dans une phrase.
    Balises[C=NomDuLangage]...[/C] code intégré dans une phrase quand vous mettez du code d'un autre langage que celui du forum ou vous postez.
    Le bouton en fin de discussion, quand vous avez obtenu l'aide attendue.
    ......... et pourquoi pas, pour remercier, un pour celui/ceux qui vous ont dépannés.
    👉 → → Ma page perso sur DVP ← ← 👈

  4. #4
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Juin 2004
    Messages
    34
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2004
    Messages : 34
    Points : 25
    Points
    25
    Par défaut
    merci les deux solutions me plaisent bon dimanche

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

Discussions similaires

  1. Effet sur bouton OUI/NON (transition ? )
    Par Ushuango dans le forum Mise en page CSS
    Réponses: 7
    Dernier message: 21/01/2021, 11h19
  2. Effets sur boutons dans un formulaire continu
    Par docjo dans le forum VBA Access
    Réponses: 1
    Dernier message: 12/10/2009, 08h12
  3. [Animation] Comment réaliser un effet de sortie sur un bouton ?
    Par ikeas dans le forum Windows Presentation Foundation
    Réponses: 5
    Dernier message: 01/10/2008, 08h33
  4. Effet sur bouton
    Par Amybond dans le forum Flash
    Réponses: 4
    Dernier message: 16/07/2007, 12h12
  5. Réponses: 2
    Dernier message: 07/08/2006, 21h21

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