Category : Jquery

HomeRisorseArchivio Categoria "Jquery"

VenoBox – Responsive jQuery Lightbox Plugin

urlVenobox è un plugin lightbox jquery adatto per gallerie fotografiche, contenuti, iFrames, Google Maps, Vimeo e video YouTube. Venobox, a differenza di tutti gli altri plugin, calcola la larghezza massima dell’immagine (max width) conservando l’altezza (in piccoli dispositivi è possibile scorrere verso il basso il contenuto).

VenoBox – Responsive jQuery Lightbox Plugin ultima modifica: 2013-11-26T08:11:14+00:00 da Piesseweb

jQuery Interactive 3D

jquery (1)jQuery interactive 3D è un plugin che permette di creare oggetti 3D interattivi utilizzando una serie di immagini come fotogrammi: l’immagine può essere manipolata con il Drag and drop.

jQuery Interactive 3D ultima modifica: 2013-11-25T17:56:39+00:00 da Piesseweb

FunnyText

funny-textFunnyText.js è un plugin jQuery che permette di creare animazioni con le lettere all’interno di un testo: è possibile configurare i colori, la velocità di movimento, la dimensione del carattere.

FunnyText ultima modifica: 2013-11-25T14:10:46+00:00 da Piesseweb

Media Queries

media-queri
Media Queries è la risposta di CSS3 al relativo problema dell’adattabilità degli stili grafici a tutti i device e alle diverse risoluzioni.
Media Queries permette di utilizzare un solo foglio di stile per il layout di molteplici dispositivi, andando a sovrascrivere le classi lato css al verificarsi di determinate condizioni preimpostate.

 
/* iPhone e altri smartphones (portrait) */
@media screen and (max-device-width: 320px) {
}
/* iPhone e altri smartphones (landscape) */
@media screen and (max-device-width: 480px) {
}
/* iPhone e altri smartphones (portrait) */
@media screen and (max-device-width: 320px) {
}
/* iPhone e altri smartphones (landscape) */
@media screen and (max-device-width: 480px) {
}
/* iPad e altri tablets (portrait) */
@media screen and (max-device-width: 768px) {
}
/* iPad e altri tablets (landscape) */
@media screen and (max-device-width: 1024px) {
}
/* iPhone 5 (portrait) */
@media screen and (max-device-width: 568px) and (orientation: portrait) {
}
/* iPhone 5 (landscape) */
@media screen and (max-device-width: 568px) and (orientation: landscape) {
}
/* Samsung Galaxy (portrait) */
@media screen and (max-width: 385px) {
}
/* Samsung Galaxy (landscape) */
@media screen and (max-width: 690px) {
}
/* iPhone e altri smartphones (portrait) */
@media screen and (max-device-width: 320px) {
}
/* iPhone e altri smartphones (landscape) */
@media screen and (max-device-width: 480px) {
}
/* iPad e altri tablets (portrait) */
@media screen and (max-device-width: 768px) {
}
/* iPad e altri tablets (landscape) */
@media screen and (max-device-width: 1024px) {
}
/* iPhone 5 (portrait) */
@media screen and (max-device-width: 568px) and (orientation: portrait) {
}
/* iPhone 5 (landscape) */
@media screen and (max-device-width: 568px) and (orientation: landscape) {
}
/* iPad (portrait) */
@media screen and (max-width: 760px) {
}
/* Smartphones (landscape) */
@media screen and (max-width: 480px) {
}
/* Smartphones (portrait) */
@media screen and (max-width: 320px) {
}