Le WebPart Diaporama ajuste la taille des images. Pour adapter la taille selon les besoins, il faut utiliser un WebPart Éditeur de contenu avec le code suivant.
<script>
$(document).ready(function() {
var divList = $("div[id^='MSOPictureLibrarySlideshowWebPart']");
var currImage= $("img[id$='curr']");
divList.height('100%');
divList.width('100%');
currImage.height('125%');
currImage.width('125%');
});</script>
Personnaliser le pourcentage de currImage.height et width selon votre besoin.
http://vbcity.com/blogs/skullcrusher/archive/2011/09/26/sharepoint-2010-picture-library-slideshow-web-part-image-size.aspx
Aucun commentaire:
Enregistrer un commentaire