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 :

Conflits de scripts


Sujet :

JavaScript

  1. #1
    Membre averti
    Femme Profil pro
    Étudiant
    Inscrit en
    Juillet 2013
    Messages
    26
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juillet 2013
    Messages : 26
    Par défaut Conflits de scripts
    Bonjour,
    J'ai récupéré deux modules marchant avec Javascript pour les intégrer sur la meme page . Hors, séparément, ils fonctionnent, et lorsque j'essaye d'intégrer l'un dans l'autre, les scripts qui font les animation entrent en conflit puisqu'il n'y en a plus qu'un qui fonctionne.

    Il s'agit de cette page HTML :
    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
    <!DOCTYPE html>
    <html lang="en" >
     
    <head>
    	<meta charset="UTF-8" />
    	<meta http-equiv="X-UA-Compatible" content="IE=edge">
    	<meta name="viewport" content="width=device-width, initial-scale=1">
    	<title>Card Expansion Effect - Demo 2</title>
    	<meta name="description" content="Card Expansion Effect with SVG clipPath" />
    	<meta name="keywords" content="clipPath, svg, effect, layout, expansion, images, grid, polygon" />
    	<meta name="author" content="Claudio Calautti for Codrops" />
    	<link rel="shortcut icon" href="favicon.ico">
    	<link rel="stylesheet" type="text/css" href="css/normalize.css" />
    	<link rel="stylesheet" type="text/css" href="fonts/font-awesome-4.3.0/css/font-awesome.min.css" />
    	<link rel="stylesheet" type="text/css" href="css/demo.css" />
    	<link rel="stylesheet" type="text/css" href="css/card.css" />
    	<link rel="stylesheet" type="text/css" href="css/pattern.css" />
        	<link rel="stylesheet" type="text/css" href="css/grilledefaut.css" />
    		<link rel="stylesheet" type="text/css" href="css/grillecomposant.css" />
    		<link rel="stylesheet" type="text/javascript" href="jsGrid/modernizr.custom.js" />
    </head>
     
    <body class="demo-2">
    	<div class="container">
    		<header class="codrops-header">
     
    			<h1>PORTFOLIO - CV - REALISATIONS  <span>Lina Manzo</span></h1>
     
    		</header>
     
    		<div class="content">
    			<!-- trianglify pattern container -->
    			<div class="pattern pattern--hidden"></div>
    			<!-- cards -->
    			<div class="wrapper">
    				<div class="card">
    					<div class="card__container card__container--closed">
    						<svg class="card__image" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1920 500" preserveAspectRatio="xMidYMid slice">
    							<defs>
    								<clipPath id="clipPath1">
    									<polygon class="clip" points="0,500 0,0 1920,0 1920,500"></polygon>
    								</clipPath>
    							</defs>
    							<image clip-path="url(#clipPath1)" width="1920" height="500" xlink:href="img/orangeband.png"></image>
    						</svg>
    						<div class="card__content">
    							<i class="card__btn-close fa fa-times"></i>
    							<div class="card__caption">
    								<h2 class="card__title">PORTFOLIO  </h2>
    								<p class="card__subtitle">SUPPORT DE COMMUNICATION PRINT & WEB (RESEAUX SOCIAUX)</p>
     
    							</div>
    							<div class="card__copy">
    								<div class="meta">
    									<!--<img class="meta__avatar" src="img/authors/logo.png" alt="author01" />-->
    									<span class="meta__author">Travail sur Photoshop</span>
    									<span class="meta__date"></span>
    								</div>
                       <div class="container">	
     
     
    			<div class="main">
    				<ul id="og-grid" class="og-grid">
    					<li>
    						<a href="https://www.facebook.com/O.to.ojo.meta.o/media_set?set=a.10208120292264351.1073741827.1211811156&type=3" data-largesrc="../Grille/images/1.jpg" data-title="Chaudron Sound System" data-description="">
    							<img src="../Grille/images/thumbs/1.jpg" alt="img01"/>
    						</a>
    					</li>
    					<li>
    						<a href="https://www.facebook.com/O.to.ojo.meta.o/media_set?set=a.10208120292264351.1073741827.1211811156&type=3" data-largesrc="../Grille/images/2.jpg" data-title="Chaudron" data-description="">
    							<img src="../Grille/images/thumbs/2.jpg" alt="img02"/>
    						</a>
    					</li>
    					<li>
    						<a href="https://www.facebook.com/O.to.ojo.meta.o/media_set?set=a.10208120292264351.1073741827.1211811156&type=3" data-largesrc="../Grille/images/3.jpg" data-title="" data-description="">
    							<img src="../Grille/images/thumbs/3.jpg" alt="img03"/>
    						</a>
    					</li>
    					<li>
    						<a href="https://www.facebook.com/O.to.ojo.meta.o/media_set?set=a.10208120292264351.1073741827.1211811156&type=3" data-largesrc="../Grille/images/4.jpg" data-title="" data-description="">
    							<img src="../Grille/images/thumbs/4.jpg" alt="img01"/>
    						</a>
    					</li>
    					<li>
    						<a href="https://www.facebook.com/O.to.ojo.meta.o/media_set?set=a.10208120292264351.1073741827.1211811156&type=3" data-largesrc="../Grille/images/5.jpg" data-title="" data-description="">
    							<img src="../Grille/images/thumbs/5.jpg" alt="img02"/>
    						</a>
    					</li>
    					<li>
    						<a href="https://www.facebook.com/O.to.ojo.meta.o/media_set?set=a.10208120292264351.1073741827.1211811156&type=3" data-largesrc="../Grille/images/6.jpg" data-title="" data-description="">
    							<img src="../Grille/images/thumbs/6.jpg" alt="img03"/>
    						</a>
    					</li>
    					<li>
    						<a href="http://cargocollective.com/jaimemartinez/" data-largesrc="../Grille/images/7.jpg" data-title="" data-description="">
    							<img src="../Grille/images/thumbs/7.jpg" alt="img01"/>
    						</a>
    					</li>
    					<li>
    						<a href="http://cargocollective.com/jaimemartinez/" data-largesrc="../Grille/images/16.png" data-title="" data-description=" ">
    							<img src="../Grille/images/thumbs/16.png" alt="img02"/>
    						</a>
    					</li>
    					<li>
    						<a href="http://cargocollective.com/jaimemartinez/" data-largesrc="../Grille/images/17.jpg" data-title="" data-description="Cabbage bamboo shoot broccoli rabe chickpea chard sea lettuce lettuce ricebean artichoke earthnut pea aubergine okra brussels sprout avocado tomato.">
    							<img src="../Grille/images/thumbs/17.jpg" alt="img03"/>
    						</a>
    					</li>
    					<li>
    						<a href="http://cargocollective.com/jaimemartinez/" data-largesrc="../Grille/images/18.png" data-title="Azuki bean" data-description="Swiss chard pumpkin bunya nuts maize plantain aubergine napa cabbage soko coriander sweet pepper water spinach winter purslane shallot tigernut lentil beetroot.">
    							<img src="../Grille/images/thumbs/18.png" alt="img01"/>
    						</a>
    					</li>
    					<li>
    						<a href="http://cargocollective.com/jaimemartinez/" data-largesrc="../Grille/images/19.png" data-title="Veggies sunt bona vobis" data-description="Komatsuna prairie turnip wattle seed artichoke mustard horseradish taro rutabaga ricebean carrot black-eyed pea turnip greens beetroot yarrow watercress kombu.">
    							<img src="../Grille/images/thumbs/19.png" alt="img02"/>
    						</a>
    					</li>
    					<li>
    						<a href="http://cargocollective.com/jaimemartinez/" data-largesrc="../Grille/images/12.jpg" data-title="Dandelion horseradish" data-description="Cabbage bamboo shoot broccoli rabe chickpea chard sea lettuce lettuce ricebean artichoke earthnut pea aubergine okra brussels sprout avocado tomato.">
    							<img src="../Grille/images/thumbs/12.jpg" alt="img03"/>
    						</a>
    					</li>
    					<li>
    						<a href="http://cargocollective.com/jaimemartinez/" data-largesrc="../Grille/images/13.jpg" data-title="Azuki bean" data-description="Swiss chard pumpkin bunya nuts maize plantain aubergine napa cabbage soko coriander sweet pepper water spinach winter purslane shallot tigernut lentil beetroot.">
    							<img src="../Grille/images/thumbs/13.jpg" alt="img01"/>
    						</a>
    					</li>
    					<li>
    						<a href="http://cargocollective.com/jaimemartinez/" data-largesrc="../Grille/images/14.jpg" data-title="Veggies sunt bona vobis" data-description="Komatsuna prairie turnip wattle seed artichoke mustard horseradish taro rutabaga ricebean carrot black-eyed pea turnip greens beetroot yarrow watercress kombu.">
    							<img src="../Grille/images/thumbs/14.jpg" alt="img02"/>
    						</a>
    					</li>
    					<li>
    						<a href="http://cargocollective.com/jaimemartinez/" data-largesrc="../Grille/images/15.png" data-title="Dandelion horseradish" data-description="Cabbage bamboo shoot broccoli rabe chickpea chard sea lettuce lettuce ricebean artichoke earthnut pea aubergine okra brussels sprout avocado tomato.">
    							<img src="../Grille/images/thumbs/15.png" alt="img03"/>
    						</a>
    					</li>
    					<li>
    						<a href="http://cargocollective.com/jaimemartinez/" data-largesrc="../Grille/images/8.jpg" data-title="Azuki bean" data-description="Swiss chard pumpkin bunya nuts maize plantain aubergine napa cabbage soko coriander sweet pepper water spinach winter purslane shallot tigernut lentil beetroot.">
    							<img src="../Grille/images/thumbs/8.jpg" alt="img01"/>
    						</a>
    					</li>
    					<li>
    						<a href="http://cargocollective.com/jaimemartinez/" data-largesrc="../Grille/images/9.jpg" data-title="Veggies sunt bona vobis" data-description="Komatsuna prairie turnip wattle seed artichoke mustard horseradish taro rutabaga ricebean carrot black-eyed pea turnip greens beetroot yarrow watercress kombu.">
    							<img src="../Grille/images/thumbs/9.jpg" alt="img02"/>
    						</a>
    					</li>
    					<li>
    						<a href="http://cargocollective.com/jaimemartinez/" data-largesrc="../Grille/images/10.jpg" data-title="Dandelion horseradish" data-description="Cabbage bamboo shoot broccoli rabe chickpea chard sea lettuce lettuce ricebean artichoke earthnut pea aubergine okra brussels sprout avocado tomato.">
    							<img src="../Grille/images/thumbs/10.jpg" alt="img03"/>
    						</a>
    					</li>
    					<li>
    						<a href="http://cargocollective.com/jaimemartinez/" data-largesrc="../Grille/images/11.jpg" data-title="Azuki bean" data-description="Swiss chard pumpkin bunya nuts maize plantain aubergine napa cabbage soko coriander sweet pepper water spinach winter purslane shallot tigernut lentil beetroot.">
    							<img src="../Grille/images/thumbs/11.jpg" alt="img01"/>
    						</a>
    					</li>
     
    				</ul>
     
    			</div>
    		</div><!-- /container -->         
    								</div>
    						</div>
    					</div>
    				</div>
    			<!--	<div class="card">
    					<div class="card__container card__container--closed">
    						<svg class="card__image" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1920 500" preserveAspectRatio="xMidYMid slice">
    							<defs>
    								<clipPath id="clipPath2">
    									<polygon class="clip" points="0,500 0,0 1920,0 1920,500"></polygon>
    								</clipPath>
    							</defs>
    							<image clip-path="url(#clipPath2)" width="1920" height="500" xlink:href="img/b.jpg"></image>
    						</svg>
    						<div class="card__content">
    							<i class="card__btn-close fa fa-times"></i>
    							<div class="card__caption">
    								<h2 class="card__title">About Helen</h2>
    								<p class="card__subtitle">A story about a woman</p>
    							</div>
    							<div class="card__copy">
    								<div class="meta">
    									<img class="meta__avatar" src="img/authors/2.png" alt="author02" />
    									<span class="meta__author">Frank Posterius</span>
    									<span class="meta__date">06/16/2015</span>
    								</div>
    								<p>Business model canvas bootstrapping deployment startup. In A/B testing pivot niche market alpha conversion startup down monetization partnership business-to-consumer success for investor mass market business-to-business.</p>
    								<p>Release creative social proof influencer iPad crowdsource gamification learning curve network effects monetization. Gamification business plan mass market www.discoverartisans.com direct mailing ecosystem seed round sales long tail vesting period.</p>
    								<p>Product management ramen bootstrapping seed round venture holy grail technology backing partner network entrepreneur beta marketing value proposition. Android stealth conversion scrum project network effects. Creative alpha long tail conversion stealth growth hacking iteration investor A/B testing prototype customer. Startup www.discoverartisans.com direct mailing launch party partnership market ramen metrics focus value proposition.</p>
    								<p>Stock infrastructure seed round sales paradigm shift technology user experience focus gamification. Partnership metrics business plan stealth business-to-business. Deployment graphical user interface monetization. Twitter incubator scrum project entrepreneur branding burn rate ramen backing paradigm shift virality crowdsource.</p>
    								<p>Social proof MVP ecosystem. Ramen launch party pitch deployment stealth. Vesting period MVP equity. Focus creative partnership founders iteration agile development infographic.</p>
    								<p>Low hanging fruit burn rate innovator user experience niche market A/B testing creative launch party product management release. Www.discoverartisans.com influencer business model canvas user experience gamification paradigm shift startup research &amp; development iPad agile development. Strategy incubator infographic success marketing buzz A/B testing responsive web design. Traction research &amp; development pitch seed money venture niche market accelerator network effects.</p>
    							</div>
    						</div>
    					</div>
    				</div>
    				<div class="card">
    					<div class="card__container card__container--closed">
    						<svg class="card__image" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1920 500" preserveAspectRatio="xMidYMid slice">
    							<defs>
    								<clipPath id="clipPath3">
    									<polygon class="clip" points="0,500 0,0 1920,0 1920,500"></polygon>
    								</clipPath>
    							</defs>
    							<image clip-path="url(#clipPath3)" width="1920" height="500" xlink:href="img/c.jpg"></image>
    						</svg>
    						<div class="card__content">
    							<i class="card__btn-close fa fa-times"></i>
    							<div class="card__caption">
    								<h2 class="card__title">A mild winter</h2>
    								<p class="card__subtitle">Helen's view on wells</p>
    							</div>
     
    						</div>
    					</div>
    				</div>
    				-->
     
    			</div>
    			<!-- /cards -->
    		</div><!-- /content -->
    		<!-- Related demos -->
     
    	</div>
     
    	<!-- /container -->
     
    	<!-- JS -->
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
    		<script src="../Grille/jsGrid/grid.js"></script>
    		<script>
                        $(function () {
                            Grid.init();
                           
                        });
                    </script>
    	<script src="jsCard/vendors/trianglify.min.js"></script>
    	<script src="jsCard/vendors/TweenMax.min.js"></script>
    	<script src="jsCard/vendors/ScrollToPlugin.min.js"></script>
    	<script src="jsCard/vendors/cash.min.js"></script>
    	<script src="jsCard/Card-polygon.js"></script>
    	<script src="jsCard/demo-2.js"></script>
     
    </body>
     
    </html>

    LE JS qui je pense ne fonctionne pas :

    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
    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
    * debouncedresize: special jQuery event that happens once after a window resize
    *
    * latest version and complete README available on Github:
    * https://github.com/louisremi/jquery-smartresize/blob/master/jquery.debouncedresize.js
    *
    * Copyright 2011 @louis_remi
    * Licensed under the MIT license.
    */
    var $event = $.event,
    $special,
    resizeTimeout;
     
    $special = $event.special.debouncedresize = {
    	setup: function() {
    		$( this ).on( "resize", $special.handler );
    	},
    	teardown: function() {
    		$( this ).off( "resize", $special.handler );
    	},
    	handler: function( event, execAsap ) {
    		// Save the context
    		var context = this,
    			args = arguments,
    			dispatch = function() {
    				// set correct event type
    				event.type = "debouncedresize";
    				$event.dispatch.apply( context, args );
    			};
     
    		if ( resizeTimeout ) {
    			clearTimeout( resizeTimeout );
    		}
     
    		execAsap ?
    			dispatch() :
    			resizeTimeout = setTimeout( dispatch, $special.threshold );
    	},
    	threshold: 250
    };
     
    // ======================= imagesLoaded Plugin ===============================
    // https://github.com/desandro/imagesloaded
     
    // $('#my-container').imagesLoaded(myFunction)
    // execute a callback when all images have loaded.
    // needed because .load() doesn't work on cached images
     
    // callback function gets image collection as argument
    //  this is the container
     
    // original: MIT license. Paul Irish. 2010.
    // contributors: Oren Solomianik, David DeSandro, Yiannis Chatzikonstantinou
     
    // blank image data-uri bypasses webkit log warning (thx doug jones)
    var BLANK = 'data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==';
     
    $.fn.imagesLoaded = function( callback ) {
    	var $this = this,
    		deferred = $.isFunction($.Deferred) ? $.Deferred() : 0,
    		hasNotify = $.isFunction(deferred.notify),
    		$images = $this.find('img').add( $this.filter('img') ),
    		loaded = [],
    		proper = [],
    		broken = [];
     
    	// Register deferred callbacks
    	if ($.isPlainObject(callback)) {
    		$.each(callback, function (key, value) {
    			if (key === 'callback') {
    				callback = value;
    			} else if (deferred) {
    				deferred[key](value);
    			}
    		});
    	}
     
    	function doneLoading() {
    		var $proper = $(proper),
    			$broken = $(broken);
     
    		if ( deferred ) {
    			if ( broken.length ) {
    				deferred.reject( $images, $proper, $broken );
    			} else {
    				deferred.resolve( $images );
    			}
    		}
     
    		if ( $.isFunction( callback ) ) {
    			callback.call( $this, $images, $proper, $broken );
    		}
    	}
     
    	function imgLoaded( img, isBroken ) {
    		// don't proceed if BLANK image, or image is already loaded
    		if ( img.src === BLANK || $.inArray( img, loaded ) !== -1 ) {
    			return;
    		}
     
    		// store element in loaded images array
    		loaded.push( img );
     
    		// keep track of broken and properly loaded images
    		if ( isBroken ) {
    			broken.push( img );
    		} else {
    			proper.push( img );
    		}
     
    		// cache image and its state for future calls
    		$.data( img, 'imagesLoaded', { isBroken: isBroken, src: img.src } );
     
    		// trigger deferred progress method if present
    		if ( hasNotify ) {
    			deferred.notifyWith( $(img), [ isBroken, $images, $(proper), $(broken) ] );
    		}
     
    		// call doneLoading and clean listeners if all images are loaded
    		if ( $images.length === loaded.length ){
    			setTimeout( doneLoading );
    			$images.unbind( '.imagesLoaded' );
    		}
    	}
     
    	// if no images, trigger immediately
    	if ( !$images.length ) {
    		doneLoading();
    	} else {
    		$images.bind( 'load.imagesLoaded error.imagesLoaded', function( event ){
    			// trigger imgLoaded
    			imgLoaded( event.target, event.type === 'error' );
    		}).each( function( i, el ) {
    			var src = el.src;
     
    			// find out if this image has been already checked for status
    			// if it was, and src has not changed, call imgLoaded on it
    			var cached = $.data( el, 'imagesLoaded' );
    			if ( cached && cached.src === src ) {
    				imgLoaded( el, cached.isBroken );
    				return;
    			}
     
    			// if complete is true and browser supports natural sizes, try
    			// to check for image status manually
    			if ( el.complete && el.naturalWidth !== undefined ) {
    				imgLoaded( el, el.naturalWidth === 0 || el.naturalHeight === 0 );
    				return;
    			}
     
    			// cached images don't fire load sometimes, so we reset src, but only when
    			// dealing with IE, or image is complete (loaded) and failed manual check
    			// webkit hack from http://groups.google.com/group/jquery-dev/browse_thread/thread/eee6ab7b2da50e1f
    			if ( el.readyState || el.complete ) {
    				el.src = BLANK;
    				el.src = src;
    			}
    		});
    	}
     
    	return deferred ? deferred.promise( $this ) : $this;
    };
     
    var Grid = (function() {
     
    		// list of items
    	var $grid = $( '#og-grid' ),
    		// the items
    		$items = $grid.children( 'li' ),
    		// current expanded item's index
    		current = -1,
    		// position (top) of the expanded item
    		// used to know if the preview will expand in a different row
    		previewPos = -1,
    		// extra amount of pixels to scroll the window
    		scrollExtra = 0,
    		// extra margin when expanded (between preview overlay and the next items)
    		marginExpanded = 10,
    		$window = $( window ), winsize,
    		$body = $( 'html, body' ),
    		// transitionend events
    		transEndEventNames = {
    			'WebkitTransition' : 'webkitTransitionEnd',
    			'MozTransition' : 'transitionend',
    			'OTransition' : 'oTransitionEnd',
    			'msTransition' : 'MSTransitionEnd',
    			'transition' : 'transitionend'
    		},
    		transEndEventName = transEndEventNames[ Modernizr.prefixed( 'transition' ) ],
    		// support for csstransitions
    		support = Modernizr.csstransitions,
    		// default settings
    		settings = {
    			minHeight : 500,
    			speed : 350,
    			easing : 'ease'
    		};
     
    	function init( config ) {
     
    		// the settings..
    		settings = $.extend( true, {}, settings, config );
     
    		// preload all images
    		$grid.imagesLoaded( function() {
     
    			// save item´s size and offset
    			saveItemInfo( true );
    			// get window´s size
    			getWinSize();
    			// initialize some events
    			initEvents();
     
    		} );
     
    	}
     
    	// add more items to the grid.
    	// the new items need to appended to the grid.
    	// after that call Grid.addItems(theItems);
    	function addItems( $newitems ) {
     
    		$items = $items.add( $newitems );
     
    		$newitems.each( function() {
    			var $item = $( this );
    			$item.data( {
    				offsetTop : $item.offset().top,
    				height : $item.height()
    			} );
    		} );
     
    		initItemsEvents( $newitems );
     
    	}
     
    	// saves the item´s offset top and height (if saveheight is true)
    	function saveItemInfo( saveheight ) {
    		$items.each( function() {
    			var $item = $( this );
    			$item.data( 'offsetTop', $item.offset().top );
    			if( saveheight ) {
    				$item.data( 'height', $item.height() );
    			}
    		} );
    	}
     
    	function initEvents() {
     
    		// when clicking an item, show the preview with the item´s info and large image.
    		// close the item if already expanded.
    		// also close if clicking on the item´s cross
    		initItemsEvents( $items );
     
    		// on window resize get the window´s size again
    		// reset some values..
    		$window.on( 'debouncedresize', function() {
     
    			scrollExtra = 0;
    			previewPos = -1;
    			// save item´s offset
    			saveItemInfo();
    			getWinSize();
    			var preview = $.data( this, 'preview' );
    			if( typeof preview != 'undefined' ) {
    				hidePreview();
    			}
     
    		} );
     
    	}
     
    	function initItemsEvents( $items ) {
    		$items.on( 'click', 'span.og-close', function() {
    			hidePreview();
    			return false;
    		} ).children( 'a' ).on( 'click', function(e) {
     
    			var $item = $( this ).parent();
    			// check if item already opened
    			current === $item.index() ? hidePreview() : showPreview( $item );
    			return false;
     
    		} );
    	}
     
    	function getWinSize() {
    		winsize = { width : $window.width(), height : $window.height() };
    	}
     
    	function showPreview( $item ) {
     
    		var preview = $.data( this, 'preview' ),
    			// item´s offset top
    			position = $item.data( 'offsetTop' );
     
    		scrollExtra = 0;
     
    		// if a preview exists and previewPos is different (different row) from item´s top then close it
    		if( typeof preview != 'undefined' ) {
     
    			// not in the same row
    			if( previewPos !== position ) {
    				// if position > previewPos then we need to take te current preview´s height in consideration when scrolling the window
    				if( position > previewPos ) {
    					scrollExtra = preview.height;
    				}
    				hidePreview();
    			}
    			// same row
    			else {
    				preview.update( $item );
    				return false;
    			}
     
    		}
     
    		// update previewPos
    		previewPos = position;
    		// initialize new preview for the clicked item
    		preview = $.data( this, 'preview', new Preview( $item ) );
    		// expand preview overlay
    		preview.open();
     
    	}
     
    	function hidePreview() {
    		current = -1;
    		var preview = $.data( this, 'preview' );
    		preview.close();
    		$.removeData( this, 'preview' );
    	}
     
    	// the preview obj / overlay
    	function Preview( $item ) {
    		this.$item = $item;
    		this.expandedIdx = this.$item.index();
    		this.create();
    		this.update();
    	}
     
    	Preview.prototype = {
    		create : function() {
    			// create Preview structure:
    			this.$title = $( '<h3></h3>' );
    			this.$description = $( '<p></p>' );
    			this.$href = $( '<a href="#">Visit website</a>' );
    			this.$details = $( '<div class="og-details"></div>' ).append( this.$title, this.$description, this.$href );
    			this.$loading = $( '<div class="og-loading"></div>' );
    			this.$fullimage = $( '<div class="og-fullimg"></div>' ).append( this.$loading );
    			this.$closePreview = $( '<span class="og-close"></span>' );
    			this.$previewInner = $( '<div class="og-expander-inner"></div>' ).append( this.$closePreview, this.$fullimage, this.$details );
    			this.$previewEl = $( '<div class="og-expander"></div>' ).append( this.$previewInner );
    			// append preview element to the item
    			this.$item.append( this.getEl() );
    			// set the transitions for the preview and the item
    			if( support ) {
    				this.setTransition();
    			}
    		},
    		update : function( $item ) {
     
    			if( $item ) {
    				this.$item = $item;
    			}
     
    			// if already expanded remove class "og-expanded" from current item and add it to new item
    			if( current !== -1 ) {
    				var $currentItem = $items.eq( current );
    				$currentItem.removeClass( 'og-expanded' );
    				this.$item.addClass( 'og-expanded' );
    				// position the preview correctly
    				this.positionPreview();
    			}
     
    			// update current value
    			current = this.$item.index();
     
    			// update preview´s content
    			var $itemEl = this.$item.children( 'a' ),
    				eldata = {
    					href : $itemEl.attr( 'href' ),
    					largesrc : $itemEl.data( 'largesrc' ),
    					title : $itemEl.data( 'title' ),
    					description : $itemEl.data( 'description' )
    				};
     
    			this.$title.html( eldata.title );
    			this.$description.html( eldata.description );
    			this.$href.attr( 'href', eldata.href );
     
    			var self = this;
     
    			// remove the current image in the preview
    			if( typeof self.$largeImg != 'undefined' ) {
    				self.$largeImg.remove();
    			}
     
    			// preload large image and add it to the preview
    			// for smaller screens we don´t display the large image (the media query will hide the fullimage wrapper)
    			if( self.$fullimage.is( ':visible' ) ) {
    				this.$loading.show();
    				$( '<img/>' ).load( function() {
    					var $img = $( this );
    					if( $img.attr( 'src' ) === self.$item.children('a').data( 'largesrc' ) ) {
    						self.$loading.hide();
    						self.$fullimage.find( 'img' ).remove();
    						self.$largeImg = $img.fadeIn( 350 );
    						self.$fullimage.append( self.$largeImg );
    					}
    				} ).attr( 'src', eldata.largesrc );	
    			}
     
    		},
    		open : function() {
     
    			setTimeout( $.proxy( function() {	
    				// set the height for the preview and the item
    				this.setHeights();
    				// scroll to position the preview in the right place
    				this.positionPreview();
    			}, this ), 25 );
     
    		},
    		close : function() {
     
    			var self = this,
    				onEndFn = function() {
    					if( support ) {
    						$( this ).off( transEndEventName );
    					}
    					self.$item.removeClass( 'og-expanded' );
    					self.$previewEl.remove();
    				};
     
    			setTimeout( $.proxy( function() {
     
    				if( typeof this.$largeImg !== 'undefined' ) {
    					this.$largeImg.fadeOut( 'fast' );
    				}
    				this.$previewEl.css( 'height', 0 );
    				// the current expanded item (might be different from this.$item)
    				var $expandedItem = $items.eq( this.expandedIdx );
    				$expandedItem.css( 'height', $expandedItem.data( 'height' ) ).on( transEndEventName, onEndFn );
     
    				if( !support ) {
    					onEndFn.call();
    				}
     
    			}, this ), 25 );
     
    			return false;
     
    		},
    		calcHeight : function() {
     
    			var heightPreview = winsize.height - this.$item.data( 'height' ) - marginExpanded,
    				itemHeight = winsize.height;
     
    			if( heightPreview < settings.minHeight ) {
    				heightPreview = settings.minHeight;
    				itemHeight = settings.minHeight + this.$item.data( 'height' ) + marginExpanded;
    			}
     
    			this.height = heightPreview;
    			this.itemHeight = itemHeight;
     
    		},
    		setHeights : function() {
     
    			var self = this,
    				onEndFn = function() {
    					if( support ) {
    						self.$item.off( transEndEventName );
    					}
    					self.$item.addClass( 'og-expanded' );
    				};
     
    			this.calcHeight();
    			this.$previewEl.css( 'height', this.height );
    			this.$item.css( 'height', this.itemHeight ).on( transEndEventName, onEndFn );
     
    			if( !support ) {
    				onEndFn.call();
    			}
     
    		},
    		positionPreview : function() {
     
    			// scroll page
    			// case 1 : preview height + item height fits in window´s height
    			// case 2 : preview height + item height does not fit in window´s height and preview height is smaller than window´s height
    			// case 3 : preview height + item height does not fit in window´s height and preview height is bigger than window´s height
    			var position = this.$item.data( 'offsetTop' ),
    				previewOffsetT = this.$previewEl.offset().top - scrollExtra,
    				scrollVal = this.height + this.$item.data( 'height' ) + marginExpanded <= winsize.height ? position : this.height < winsize.height ? previewOffsetT - ( winsize.height - this.height ) : previewOffsetT;
     
    			$body.animate( { scrollTop : scrollVal }, settings.speed );
     
    		},
    		setTransition  : function() {
    			this.$previewEl.css( 'transition', 'height ' + settings.speed + 'ms ' + settings.easing );
    			this.$item.css( 'transition', 'height ' + settings.speed + 'ms ' + settings.easing );
    		},
    		getEl : function() {
    			return this.$previewEl;
    		}
    	}
     
    	return { 
    		init : init,
    		addItems : addItems
    	};
     
    })();
    Alors j'ai essayé de faire deux dossiers un pour la grille et un pour la "card"
    j'ai essayé de tout regrouper aussi
    ca ne fonctionne pas. les images sont bien affichée mais le grid n'ouvre pas de div pour le zoom et la decription au clic, mis redirige vers la page, alors que sensément, il n'y a pas de redirection.
    j'ai entendu parler de jQuery.noConflict() mais je ne sais pas où le positionner et aussi changer les $ par jquery, mais je ne sait pas bien où les modifier au sein ds ficher js ou seulement sur le html....
    je suis un peu perdue, si vous avez des pistes ou des conseils,
    merci bcp

  2. #2
    Membre chevronné Avatar de 01001111
    Homme Profil pro
    Développeur Web
    Inscrit en
    Janvier 2009
    Messages
    319
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haute Loire (Auvergne)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Janvier 2009
    Messages : 319
    Par défaut
    Bonjour, est-il possible d'avoir une archive du développement en l'état actuel pour tester?

    sinon plus d'info sur jquery noconflict ici

    de fait il suffit de faire une seule chose pour éviter les conflits avec noconflict:
    un exemple:
    Code javascript : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
     
    $.noConflict();
    jQuery( document ).ready(function( $ ) {
      // Code that uses jQuery's $ can follow here.
    });
    Sinon si c'est sur une ancre "a" que tu cliques pour lancer le script il faut vérifier qu'il y ait bien un event.preventDefault(); dans la fonction lancée sur onclick.

    ici je vois cette fonction qui peut poser problème, il y a un return false, mais je ne sais pas si c'est suffisant avec les normes récentes:
    Code javascript : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    function initItemsEvents( $items ) {
    		$items.on( 'click', 'span.og-close', function() {
    			hidePreview();
    			return false;
    		} ).children( 'a' ).on( 'click', function(e) {
     
    			var $item = $( this ).parent();
    			// check if item already opened
    			current === $item.index() ? hidePreview() : showPreview( $item );
    			return false;
     
    		} );
    	}

    tu pourrais la corriger ainsi pour essayer:
    Code javascript : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    function initItemsEvents( $items ) {
    		$items.on( 'click', 'span.og-close', function(event) {
                            event.preventDefault();// celle-ci est peut-être facultative
    			hidePreview();
    			return false;
    		} ).children( 'a' ).on( 'click', function(event) {
                            event.preventDefault();// ici on évite que le href de l'ancre soit appelé
    			var $item = $( this ).parent();
    			// check if item already opened
    			current === $item.index() ? hidePreview() : showPreview( $item );
    			return false;
     
    		} );
    	}

    edit: je confirme après test, return false est insuffisant désormais.

  3. #3
    Membre averti
    Femme Profil pro
    Étudiant
    Inscrit en
    Juillet 2013
    Messages
    26
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juillet 2013
    Messages : 26
    Par défaut
    voici un zip de la solution comme elle est actuellement, si ça peut aider.
    J'ai testé la méthode modifiée mais on est toujours redirigé sur le lien au clic sur l'image
    je cherche donc encore bonne soirée
    Fichiers attachés Fichiers attachés

  4. #4
    Membre chevronné Avatar de 01001111
    Homme Profil pro
    Développeur Web
    Inscrit en
    Janvier 2009
    Messages
    319
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haute Loire (Auvergne)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Janvier 2009
    Messages : 319
    Par défaut
    merci pour le retour! je teste et te tiens au courant
    edit 1: oups, désolé mais je n'ai pas Visual Studio ! Peux-tu remplacer l'archive ou uploader une archive avec les fichiers non encapsulés?

Discussions similaires

  1. Conflits 2 scripts defilement
    Par Ilan55 dans le forum Général JavaScript
    Réponses: 3
    Dernier message: 17/12/2009, 16h48
  2. Conflits entre script JQuery
    Par joker92 dans le forum jQuery
    Réponses: 7
    Dernier message: 29/11/2009, 20h20
  3. Conflit de script ?
    Par mexicanino dans le forum Général JavaScript
    Réponses: 2
    Dernier message: 18/05/2009, 11h59
  4. [AJAX] Conflit entre script Ajax et scripts Javascript
    Par Mingain dans le forum Général JavaScript
    Réponses: 1
    Dernier message: 27/10/2007, 13h18

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