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 :

Recherche et pagination


Sujet :

jQuery

  1. #1
    Membre habitué
    Inscrit en
    Janvier 2007
    Messages
    437
    Détails du profil
    Informations forums :
    Inscription : Janvier 2007
    Messages : 437
    Points : 184
    Points
    184
    Par défaut Recherche et pagination
    Bonjour

    Je viens vers vous car je suis confronté a un petit souci dont je ne sais pas comment m'y prendre.
    j'ai réalisé un moteur de recherche multicritere en jquery . tous marche impec j'affiche les résultats sur la même page mais il me manque la pagination et je vois pas du tout comment faire pour que le changement se fasse sur la même page.

    ça c'est ma page search.php qui contient donc le moteur de recherche et qui reçoit les résultat dans la div result.

    Vous verrez donc que je recupére avec un load en method post :


    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
    <?
    session_start();
    include("mysqlcon.php");
    $idcon = $_SESSION["id_user"];
     
    $sgm = "select * from membre where id='$idcon'";
    $qy = $conn->query($sgm);
     
    $r = mysqli_fetch_array($qy);
     
    $sexe_con = $r["sexe"];
     
    if($sexe_con == 'homme'){
            $selecth ='selected';
    } elseif($sexe_con == 'femme'){
            $selectf='selected';
    }
    ?>
    <script>
    $(document).ready(function() {
            var $pays = $('#pays');
        var $regions = $('#regions');
        var $departement = $('#departement');
     
     
     
     
     
     
     
        // à la sélection d une région dans la liste
        $pays.on('change', function() {
            var val = $(this).val(); // on récupère la valeur de la région
     
            if(val != '0' && val != 'ok') {
                $regions.empty(); // on vide la liste des départements
                 $departement.empty();
                             $departement.append('<option value="0" selected>Départements Indifférents</option>');
                             $regions.append('<option value="0" selected>Régions Indifférentes</option>');
                             
     $regions.css({
        display: 'inline-block'
    });
     $departement.css({
        display: 'none'
    });
                $.ajax({
                    url: 'france.php',
                    data: 'id_region='+ val, // on envoie $_GET['id_region']
                    dataType: 'json',
                    success: function(json) {
                        $.each(json, function(index, value) {
                            $regions.append('<option value="'+ index +'">'+ value +'</option>');
                        });
                    }
                });
            } else {
                            $regions.css({
        display: 'none'
    });
    $departement.css({
        display: 'none'
    });
     
     $('#regions').val('0');
    $('#departement').val('0');
     
                    }
        });
            
            // à la sélection d un département dans la liste
        $regions.on('change', function() {
            var val = $(this).val(); // on récupère la valeur de la région
     
            if(val != '') {
                $departement.empty(); 
                             $departement.append('<option value="0" selected>Indifférent</option>');
                             $regions.css({
        display: 'inline-block'
    });
                             $departement.css({
        display: 'inline-block'
    });
                $.ajax({
                    url: 'france.php',
                    data: 'idep='+ val, // on envoie $_GET['id_dep']
                    dataType: 'json',
                    success: function(json) {
                        $.each(json, function(index, value) {
                                                    
                            $departement.append('<option value="'+ index +'">'+ value +'</option>');
                        });
                    }
                });
            }
        });
            
            
                $( "#slider-range" ).slider({
          range: true,
          min: 18,
          max: 99,
          values: [ 25, 70 ],
          slide: function( event, ui ) {
            $( "#amount" ).text( "" + ui.values[ 0 ] + " ans - " + ui.values[ 1 ] +" ans" );
                    $( "#text" ).val( "" + ui.values[ 0 ] + " ans - " + ui.values[ 1 ] +" ans" );
                    
                    $( "#age1" ).val(ui.values[ 0 ]);
                    $( "#age2" ).val(ui.values[ 1 ]);
                    
          }
        });
        $( "#amount" ).text( "" + $( "#slider-range" ).slider( "values", 0 ) +
          " ans - " + $( "#slider-range" ).slider( "values", 1 ) + " ans");
              
              $( "#age1" ).val($( "#slider-range" ).slider( "values", 0 ));
              $( "#age2" ).val($( "#slider-range" ).slider( "values", 1 ));
            
              
            $('#test').on('click', function() {
                    
                    
                    
    var pays = $('#pays').val();
    var regions = $('#regions').val();
    var departement = $('#departement').val();
    var radio = $('#photo').val(); 
    var age1 = $( "#age1" ).val();
    var age2 = $( "#age2" ).val();
    var enf = $( "#enf" ).val();
    var sexe = $( "#sexe" ).val();
    $.ajax({
                                    url : "result.php",
                                            type: "POST",
                                            data: {cpays : pays, cregion : regions, sexe : sexe, cdep : departement, onphoto : radio, ageun : age1, agedeux : age2, enfant : enf },
                                            
                                    success: function(data) {
                                            if(data != ' ') {
                                    
                            
                            $("#result").load("result.php", { // N'oubliez pas l'ouverture des accolades !
    cpays : $('#pays').val(),
    cregion : $('#regions').val(),
    cdep : $('#departement').val(),
    onphoto : $('#photo').val(),
    ageun : $( "#age1" ).val(),
    agedeux : $( "#age2" ).val(),
    enf : $( "#enf" ).val(),
    sexe : $( "#sexe" ).val()
    });
                            
                                            } else {
                                                    alert('Erreur');
                                            }
                                    }
                            });
                            
    });     
    });
    </script>
      <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
      <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
    <h2>Recherche de profil :</h2>
    <select id="pays" name="pays" style="display:inline-block; margin-bottom: 15px;">
        <option value="0">Pays Indifférent</option>
    	<option value="1">Madagascar</option>
    	<option value="2">France</option>
    </select>
     <select id="regions" name="regions" style="display:none;">
        <option value="">-- Régions--</option>
    </select>
    <select id="departement" name="departement" style="display:none;">
        <option value="">-- Départements--</option>
    </select><br>
     
    Je recherche :
    <select id="sexe" name="sexe" >
        <option value="0">Indifférent</option>
    	<option value="homme" <?php echo $selectf; ?>>Un Homme</option>
    	<option value="femme" <?php echo $selecth; ?>>Une Femme</option>
    </select><br>
     
    Ages entre : <div id="amount" readonly style="border:0; color:#f6931f; font-weight:bold; display:inline-block;"></div>
    <i>( Utilisez la barre ci-dessous pour choisir la tranche d'ages )<i><p>
     
    <input type="hidden" id="age1">
     <input type="hidden" id="age2">
    <div id="slider-range" style="width: 300px; margin-bottom:15px;"></div>
    <p>Avec Photos
    <select id="photo" name="photo" style="display:inline-block;">
        <option value="0">Indifférent</option>
    	<option value="oui">Oui</option>
    	<option value="non">Non</option>
    </select><p>
    Avec des enfants :
    <select id="enf" name="enf" style="display:inline-block;">
        <option value="0">Indifférent</option>
    	<option value="oui">Oui</option>
    	<option value="non">Non</option>
    </select><p>
      <input type="button" id="test" value="Rechercher">
     
     
      <div id="result"> </div>

    et voila ma page résult.php
    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
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    <?php
    session_start();
    include("mysqlcon.php");
          
        // on récupère les critères sélectionnés
        extract($_POST);
     
        $i = 0;
              
        // si la variable est présente, on lui affecte une place dans le tableau 'choix[]', qui nous servira ensuite à construire le WHERE de la requête.
        if(!empty($cpays) && $cpays != '0') { $choix[$i++] = "nom_pays = '$cpays'"; }
        if(!empty($cregion) && $cregion != '0') { $choix[$i++] = "nom_region = '$cregion'"; }
        if(!empty($cdep) && $cdep != '0') { $choix[$i++] = "nom_departement = '$cdep'"; }
        if(!empty($onphoto) && $onphoto != '0') { $choix[$i++] = "photo = '$onphoto'"; }
            if(!empty($enf) && $enf != '0') { $choix[$i++] = "enfant = '$enf'"; }
            if((isset($ageun)) && (isset($agedeux))) { $choix[$i++] = "age BETWEEN '$ageun' AND '$agedeux'"; }
            if(!empty($sexe) && $sexe != '0') { $choix[$i++] = "sexe = '$sexe'"; }
        // etc... tu fais pareil pour chaque critère
     
        // on insère les éléments remplis dans une variable $critere, en commençant par la première occurrence, puis on boucle
        $critere = $choix[0]." ";
              
        for($j=1;$j<$i;$j++) 
        {
          $critere .= " AND ".$choix[$j]." ";
        }
     
        // enfin on fait la requête si $i >0, ça veut dire qu'il y a des critères
        if($i > 0) 
        {
          // requete de selection
          $sql = "SELECT * FROM membre WHERE $critere ORDER BY connexion DESC";
          $requete = $conn->query($sql);
     
                }
     
        // si $i = 0, alors l'utilisateur n'a pas saisi de critère, là soit on fait la même requete mais sans "WHERE $critere", soit on lui demande de saisir au moins un critère.
        else 
        {
          $sql = "SELECT * FROM membre ORDER BY connexion DESC";
            
              $requete = $conn->query($sql);
              
        }
    ?>
     <link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet">
        <style type="text/css">
            .src-image {
      display: none;
    }
     
    .card {
            width: 250px;
      overflow: hidden;
      position: relative;
      float: left;
      border: 1px solid #CCC;
      border-radius: 8px;
      text-align: center;
      padding: 0;
      margin-right: 5px;
     
      
    }
     
    .card .header-bg {
      /* This stretches the canvas across the entire hero unit */
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 70px;
      border-bottom: 1px #FFF solid;
      /* This positions the canvas under the text */
      z-index: 1;
    }
    .card .avatar {
      position: relative;
      margin-top: 15px;
      z-index: 100;
    }
     
    .card .avatar img {
      width: 100px;
      height: 100px;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      border-radius: 50%;
       border: 2px solid #ea84a5;
     
    }
     
        </style>
    <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
     
     <?php
     $nbr = mysqli_num_rows($requete);
     if($nbr == '0'){
             echo("Aucun membre ne correspond à votre recherche");
     } else {
          while( $result = mysqli_fetch_array( $requete ) )
          { 
      $avatar = $result["photo_profil"];
      $pseudo_m = $result["pseudo"];
      $age_m = $result["age"];
      $sexe = $result["sexe"];
      
      if($sexe == "homme"){
              $style = "#284c79";
              $color = "color: rgb(136, 172, 217)";
      } elseif ($sexe == "femme"){
              $style = "#ea84a5";
              $color = "color : #000";
      }
      ?>
     
                <div class="card" style="background-color: <?php echo $style; ?>; <?php echo $color; ?>;">
                    <canvas class="header-bg" width="250" height="70" id="header-blur"></canvas>
                    <div class="avatar">
                        <img src="<?php echo $avatar; ?>" alt="" />
                    </div>
                    <div class="content">
                        <p><?php echo $pseudo_m; ?> (<?php echo $age_m; ?> ans) <br>
                           More description here</p>
                        <p><button type="button" class="btn btn-default">Contact</button></p>
                    </div>
                </div>
     
     <img class="src-image"  src="<?php echo $avatar; ?>"/>
     
     
     <?php } }?>
     <script type="text/javascript">
    /*
     
    This Snippet is using a modified Stack Blur js lib for blurring the header images.
     
    I could not use hosted images because Canvas cannot work with cross domain images. If you want to use hosted images make sure they are on the same domain.
     
    Have fun!
     
    */
     
    /*
     
    StackBlur - a fast almost Gaussian Blur For Canvas
     
    Version:     0.5
    Author:         Mario Klingemann
    Contact:        mario@quasimondo.com
    Website:        http://www.quasimondo.com/StackBlurForCanvas
    Twitter:        @quasimondo
     
    In case you find this class useful - especially in commercial projects -
    I am not totally unhappy for a small donation to my PayPal account
    mario@quasimondo.de
     
    Or support me on flattr: 
    https://flattr.com/thing/72791/StackBlur-a-fast-almost-Gaussian-Blur-Effect-for-CanvasJavascript
     
    Copyright (c) 2010 Mario Klingemann
     
    Permission is hereby granted, free of charge, to any person
    obtaining a copy of this software and associated documentation
    files (the "Software"), to deal in the Software without
    restriction, including without limitation the rights to use,
    copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the
    Software is furnished to do so, subject to the following
    conditions:
     
    The above copyright notice and this permission notice shall be
    included in all copies or substantial portions of the Software.
     
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
    OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
    HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
    OTHER DEALINGS IN THE SOFTWARE.
    */
     
    var mul_table = [
            512,512,456,512,328,456,335,512,405,328,271,456,388,335,292,512,
            454,405,364,328,298,271,496,456,420,388,360,335,312,292,273,512,
            482,454,428,405,383,364,345,328,312,298,284,271,259,496,475,456,
            437,420,404,388,374,360,347,335,323,312,302,292,282,273,265,512,
            497,482,468,454,441,428,417,405,394,383,373,364,354,345,337,328,
            320,312,305,298,291,284,278,271,265,259,507,496,485,475,465,456,
            446,437,428,420,412,404,396,388,381,374,367,360,354,347,341,335,
            329,323,318,312,307,302,297,292,287,282,278,273,269,265,261,512,
            505,497,489,482,475,468,461,454,447,441,435,428,422,417,411,405,
            399,394,389,383,378,373,368,364,359,354,350,345,341,337,332,328,
            324,320,316,312,309,305,301,298,294,291,287,284,281,278,274,271,
            268,265,262,259,257,507,501,496,491,485,480,475,470,465,460,456,
            451,446,442,437,433,428,424,420,416,412,408,404,400,396,392,388,
            385,381,377,374,370,367,363,360,357,354,350,347,344,341,338,335,
            332,329,326,323,320,318,315,312,310,307,304,302,299,297,294,292,
            289,287,285,282,280,278,275,273,271,269,267,265,263,261,259];
            
       
    var shg_table = [
                 9, 11, 12, 13, 13, 14, 14, 15, 15, 15, 15, 16, 16, 16, 16, 17, 
                    17, 17, 17, 17, 17, 17, 18, 18, 18, 18, 18, 18, 18, 18, 18, 19, 
                    19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 20, 20, 20,
                    20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 21,
                    21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
                    21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 22, 22, 22, 22, 22, 22, 
                    22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
                    22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 23, 
                    23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23,
                    23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23,
                    23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 
                    23, 23, 23, 23, 23, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 
                    24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
                    24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
                    24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
                    24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24 ];
     
     
    function stackBlurCanvasRGBA( canvas, top_x, top_y, width, height, radius )
    {
            if ( isNaN(radius) || radius < 1 ) return;
            radius |= 0;
            
            var context = canvas.getContext("2d");
            var imageData;
            
            try {
              try {
                    imageData = context.getImageData( top_x, top_y, width, height );
              } catch(e) {
              
                    // NOTE: this part is supposedly only needed if you want to work with local files
                    // so it might be okay to remove the whole try/catch block and just use
                    // imageData = context.getImageData( top_x, top_y, width, height );
                    try {
                            netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead");
                            imageData = context.getImageData( top_x, top_y, width, height );
                    } catch(e) {
                            alert("Cannot access local image");
                            throw new Error("unable to access local image data: " + e);
                            return;
                    }
              }
            } catch(e) {
              alert("Cannot access image");
              throw new Error("unable to access image data: " + e);
            }
                            
            var pixels = imageData.data;
                            
            var x, y, i, p, yp, yi, yw, r_sum, g_sum, b_sum, a_sum, 
            r_out_sum, g_out_sum, b_out_sum, a_out_sum,
            r_in_sum, g_in_sum, b_in_sum, a_in_sum, 
            pr, pg, pb, pa, rbs;
                            
            var div = radius + radius + 1;
            var w4 = width << 2;
            var widthMinus1  = width - 1;
            var heightMinus1 = height - 1;
            var radiusPlus1  = radius + 1;
            var sumFactor = radiusPlus1 * ( radiusPlus1 + 1 ) / 2;
            
            var stackStart = new BlurStack();
            var stack = stackStart;
            for ( i = 1; i < div; i++ )
            {
                    stack = stack.next = new BlurStack();
                    if ( i == radiusPlus1 ) var stackEnd = stack;
            }
            stack.next = stackStart;
            var stackIn = null;
            var stackOut = null;
            
            yw = yi = 0;
            
            var mul_sum = mul_table[radius];
            var shg_sum = shg_table[radius];
            
            for ( y = 0; y < height; y++ )
            {
                    r_in_sum = g_in_sum = b_in_sum = a_in_sum = r_sum = g_sum = b_sum = a_sum = 0;
                    
                    r_out_sum = radiusPlus1 * ( pr = pixels[yi] );
                    g_out_sum = radiusPlus1 * ( pg = pixels[yi+1] );
                    b_out_sum = radiusPlus1 * ( pb = pixels[yi+2] );
                    a_out_sum = radiusPlus1 * ( pa = pixels[yi+3] );
                    
                    r_sum += sumFactor * pr;
                    g_sum += sumFactor * pg;
                    b_sum += sumFactor * pb;
                    a_sum += sumFactor * pa;
                    
                    stack = stackStart;
                    
                    for( i = 0; i < radiusPlus1; i++ )
                    {
                            stack.r = pr;
                            stack.g = pg;
                            stack.b = pb;
                            stack.a = pa;
                            stack = stack.next;
                    }
                    
                    for( i = 1; i < radiusPlus1; i++ )
                    {
                            p = yi + (( widthMinus1 < i ? widthMinus1 : i ) << 2 );
                            r_sum += ( stack.r = ( pr = pixels[p])) * ( rbs = radiusPlus1 - i );
                            g_sum += ( stack.g = ( pg = pixels[p+1])) * rbs;
                            b_sum += ( stack.b = ( pb = pixels[p+2])) * rbs;
                            a_sum += ( stack.a = ( pa = pixels[p+3])) * rbs;
                            
                            r_in_sum += pr;
                            g_in_sum += pg;
                            b_in_sum += pb;
                            a_in_sum += pa;
                            
                            stack = stack.next;
                    }
                    
                    
                    stackIn = stackStart;
                    stackOut = stackEnd;
                    for ( x = 0; x < width; x++ )
                    {
                            pixels[yi+3] = pa = (a_sum * mul_sum) >> shg_sum;
                            if ( pa != 0 )
                            {
                                    pa = 255 / pa;
                                    pixels[yi]   = ((r_sum * mul_sum) >> shg_sum) * pa;
                                    pixels[yi+1] = ((g_sum * mul_sum) >> shg_sum) * pa;
                                    pixels[yi+2] = ((b_sum * mul_sum) >> shg_sum) * pa;
                            } else {
                                    pixels[yi] = pixels[yi+1] = pixels[yi+2] = 0;
                            }
                            
                            r_sum -= r_out_sum;
                            g_sum -= g_out_sum;
                            b_sum -= b_out_sum;
                            a_sum -= a_out_sum;
                            
                            r_out_sum -= stackIn.r;
                            g_out_sum -= stackIn.g;
                            b_out_sum -= stackIn.b;
                            a_out_sum -= stackIn.a;
                            
                            p =  ( yw + ( ( p = x + radius + 1 ) < widthMinus1 ? p : widthMinus1 ) ) << 2;
                            
                            r_in_sum += ( stackIn.r = pixels[p]);
                            g_in_sum += ( stackIn.g = pixels[p+1]);
                            b_in_sum += ( stackIn.b = pixels[p+2]);
                            a_in_sum += ( stackIn.a = pixels[p+3]);
                            
                            r_sum += r_in_sum;
                            g_sum += g_in_sum;
                            b_sum += b_in_sum;
                            a_sum += a_in_sum;
                            
                            stackIn = stackIn.next;
                            
                            r_out_sum += ( pr = stackOut.r );
                            g_out_sum += ( pg = stackOut.g );
                            b_out_sum += ( pb = stackOut.b );
                            a_out_sum += ( pa = stackOut.a );
                            
                            r_in_sum -= pr;
                            g_in_sum -= pg;
                            b_in_sum -= pb;
                            a_in_sum -= pa;
                            
                            stackOut = stackOut.next;
     
                            yi += 4;
                    }
                    yw += width;
            }
     
            
            for ( x = 0; x < width; x++ )
            {
                    g_in_sum = b_in_sum = a_in_sum = r_in_sum = g_sum = b_sum = a_sum = r_sum = 0;
                    
                    yi = x << 2;
                    r_out_sum = radiusPlus1 * ( pr = pixels[yi]);
                    g_out_sum = radiusPlus1 * ( pg = pixels[yi+1]);
                    b_out_sum = radiusPlus1 * ( pb = pixels[yi+2]);
                    a_out_sum = radiusPlus1 * ( pa = pixels[yi+3]);
                    
                    r_sum += sumFactor * pr;
                    g_sum += sumFactor * pg;
                    b_sum += sumFactor * pb;
                    a_sum += sumFactor * pa;
                    
                    stack = stackStart;
                    
                    for( i = 0; i < radiusPlus1; i++ )
                    {
                            stack.r = pr;
                            stack.g = pg;
                            stack.b = pb;
                            stack.a = pa;
                            stack = stack.next;
                    }
                    
                    yp = width;
                    
                    for( i = 1; i <= radius; i++ )
                    {
                            yi = ( yp + x ) << 2;
                            
                            r_sum += ( stack.r = ( pr = pixels[yi])) * ( rbs = radiusPlus1 - i );
                            g_sum += ( stack.g = ( pg = pixels[yi+1])) * rbs;
                            b_sum += ( stack.b = ( pb = pixels[yi+2])) * rbs;
                            a_sum += ( stack.a = ( pa = pixels[yi+3])) * rbs;
                       
                            r_in_sum += pr;
                            g_in_sum += pg;
                            b_in_sum += pb;
                            a_in_sum += pa;
                            
                            stack = stack.next;
                    
                            if( i < heightMinus1 )
                            {
                                    yp += width;
                            }
                    }
                    
                    yi = x;
                    stackIn = stackStart;
                    stackOut = stackEnd;
                    for ( y = 0; y < height; y++ )
                    {
                            p = yi << 2;
                            pixels[p+3] = pa = (a_sum * mul_sum) >> shg_sum;
                            if ( pa > 0 )
                            {
                                    pa = 255 / pa;
                                    pixels[p]   = ((r_sum * mul_sum) >> shg_sum ) * pa;
                                    pixels[p+1] = ((g_sum * mul_sum) >> shg_sum ) * pa;
                                    pixels[p+2] = ((b_sum * mul_sum) >> shg_sum ) * pa;
                            } else {
                                    pixels[p] = pixels[p+1] = pixels[p+2] = 0;
                            }
                            
                            r_sum -= r_out_sum;
                            g_sum -= g_out_sum;
                            b_sum -= b_out_sum;
                            a_sum -= a_out_sum;
                       
                            r_out_sum -= stackIn.r;
                            g_out_sum -= stackIn.g;
                            b_out_sum -= stackIn.b;
                            a_out_sum -= stackIn.a;
                            
                            p = ( x + (( ( p = y + radiusPlus1) < heightMinus1 ? p : heightMinus1 ) * width )) << 2;
                            
                            r_sum += ( r_in_sum += ( stackIn.r = pixels[p]));
                            g_sum += ( g_in_sum += ( stackIn.g = pixels[p+1]));
                            b_sum += ( b_in_sum += ( stackIn.b = pixels[p+2]));
                            a_sum += ( a_in_sum += ( stackIn.a = pixels[p+3]));
                       
                            stackIn = stackIn.next;
                            
                            r_out_sum += ( pr = stackOut.r );
                            g_out_sum += ( pg = stackOut.g );
                            b_out_sum += ( pb = stackOut.b );
                            a_out_sum += ( pa = stackOut.a );
                            
                            r_in_sum -= pr;
                            g_in_sum -= pg;
                            b_in_sum -= pb;
                            a_in_sum -= pa;
                            
                            stackOut = stackOut.next;
                            
                            yi += width;
                    }
            }
            
            context.putImageData( imageData, top_x, top_y );
            
    }
     
    function BlurStack()
    {
            this.r = 0;
            this.g = 0;
            this.b = 0;
            this.a = 0;
            this.next = null;
    }
     
    $( document ).ready(function() {
      var BLUR_RADIUS = 40;
      var sourceImages = [];
     
      $('.src-image').each(function(){
        sourceImages.push($(this).attr('src'));
      });
     
      $('.avatar img').each(function(index){
        $(this).attr('src', sourceImages[index] );
      });
     
      var drawBlur = function(canvas, image) {
        var w = canvas.width;
        var h = canvas.height;
        var canvasContext = canvas.getContext('2d');
        canvasContext.drawImage(image, 0, 0, w, h);
        stackBlurCanvasRGBA(canvas, 0, 0, w, h, BLUR_RADIUS);
      }; 
        
      
      $('.card canvas').each(function(index){
        var canvas = $(this)[0];
        
        var image = new Image();
        image.src = sourceImages[index];
        
        image.onload = function() {
          drawBlur(canvas, image);
        }
      });
    });
     
    </script>
          </div>

    si quelqu'un a une petite idée ?

  2. #2
    Membre habitué
    Inscrit en
    Janvier 2007
    Messages
    437
    Détails du profil
    Informations forums :
    Inscription : Janvier 2007
    Messages : 437
    Points : 184
    Points
    184
    Par défaut
    Probléme résolu !

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

Discussions similaires

  1. Pagination via jquery et le chargement des images
    Par markham dans le forum jQuery
    Réponses: 0
    Dernier message: 14/05/2015, 19h14
  2. Pagination en jquery/PHP/Mysql
    Par homecinemaoccasion dans le forum jQuery
    Réponses: 0
    Dernier message: 14/11/2014, 09h49
  3. Pagination avec jquery
    Par baichoch dans le forum jQuery
    Réponses: 9
    Dernier message: 05/12/2013, 00h36
  4. [AJAX] Pagination php jquery
    Par abdoulfall dans le forum jQuery
    Réponses: 0
    Dernier message: 13/10/2013, 02h01

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