Category : HTML5

HomeRisorseArchivio Categoria "HTML5"

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) {
}

OWL Carousel – Supporto Touch e responsive

owl

Permette di creare slideshow e carousel in modo facile e veloce, tenendo conto di alcuni aspetti essenziali nel web odierno.

Tra le feature principali:

  • Completamente responsive
  • Touch compatible
  • CSS3
  • Possibilità di implementare facilmente molteplici istanze senza problemi
  • Compatibile IE7, IE8, IE9, IE10, Chrome, Safari, Firefox, Opera, Dolphin, iPhone, iPad, Google Nexus.