Nessun risultato. Prova con un altro termine.
Guide
Notizie
Software
Tutorial

Una lente di ingrandimento fatta con jQuery

Molto semplice da usare, serve per ingrandire le immagini del sito. E' possibile impostare il diametro della lente di ingrandimento, il colore e la larghezza del bordo e lo stile, infatti basta modificare queste proprietà: jQuery('selector').iZoom({ diameter: '200px', //set the loupe diameter borderColor: '#bbb', // set the loupe border color borderStyle: 'inset', // set the loupe border style borderWidth: '1px' // set the loupe border width });
Molto semplice da usare, serve per ingrandire le immagini del sito. E' possibile impostare il diametro della lente di ingrandimento, il colore e la larghezza del bordo e lo stile, infatti basta modificare queste proprietà: jQuery('selector').iZoom({ diameter: '200px', //set the loupe diameter borderColor: '#bbb', // set the loupe border color borderStyle: 'inset', // set the loupe border style borderWidth: '1px' // set the loupe border width });
Link copiato negli appunti

Molto semplice da usare, serve per ingrandire le immagini del sito.

E' possibile impostare il diametro della lente di ingrandimento, il colore e la larghezza del bordo e lo stile, infatti basta modificare queste proprietà:

jQuery('selector').iZoom({
diameter: '200px', //set the loupe diameter
borderColor: '#bbb', // set the loupe border color
borderStyle: 'inset', // set the loupe border style
borderWidth: '1px' // set the loupe border width
});

Download