dann | Bonjour,
je cherche à récupérer et afficher sur un diaporama d'images, les 2 tags "title" et "alt" associés à chaque image.
Voici la fonction qui me permet de récupérer et d'afficher la donnée "title"
Comment puis je récupérer et afficher aussi (en plus) la donnée "alt" en adaptant ce code ?
Code :
- function BackgroundLoad($this,imageWidth,imageHeight,imgSrc){
- $this.fadeOut("fast",function(){
- $this.attr("src", "" ).attr("src", imgSrc); //change image source
- FullScreenBackground($this,imageWidth,imageHeight); //scale background image
- $preloader.fadeOut("fast",function(){$this.fadeIn("slow" );});
- var imageTitle=$img_title.data("imageTitle" );
- if(imageTitle){
- $this.attr("alt", imageTitle).attr("title", imageTitle);
- $img_title.fadeOut("fast",function(){
- $img_title.html(imageTitle).fadeIn();
- });
- } else {
- $img_title.fadeOut("fast",function(){
- $img_title.html($this.attr("title" )).fadeIn();
- });
- }
- });
- }
|
Merci de votre aide Message édité par dann le 28-08-2016 à 10:53:39
|