Oggi gioco con alcuni CSS3 + JavaScript.CSS3 + Javascript - Will -ms-transition: opacity 1s easy-in-out; lavoro solo in IE 10?
In basso hai il mio codice, (cercavo di creare la galleria di dissolvenza dell'immagine più piccola al mondo, non so se ci sono riuscito).
Non sono abbastanza sicuro di come impostare il CSS. Vedere commento domande qui sotto:
-ms-transition:opacity 1s ease-in-out; // Will this allone work in IE 10?
transition:opacity 1s ease-in-out; // Why do we set this?
Forse più piccolo JS-Gallery del mondo:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>HB - CSS3 + JS Gallery</title>
<meta charset="utf-8">
<style type="text/css">
body{margin:0;text-align:center;font:200px/500px georgia}
#g{background:#000;margin:0 auto;width:960px;height:500px;overflow:hidden}
#g div{
-webkit-transition:opacity 1s ease-in-out;
-moz-transition:opacity 1s ease-in-out;
-o-transition:opacity 1s ease-in-out;
-ms-transition:opacity 1s ease-in-out;
transition:opacity 1s ease-in-out;
opacity:0;position:absolute;height:500px;width:960px;}
</style>
</head>
<body>
<div id="g">
<div style="background:#090">1</div>
<div style="background:#096">2</div>
<div style="background:#963">3</div>
<div style="background:#CC0">4</div>
</div>
<script>
function i(){c[a].style.opacity='1'}function o(){c[a].style.opacity='0'}var g=document.getElementById('g'),c=g.children,l=c.length-1,f=function(){if(a==l){o();a=0;i()}else{o();a++;i()}};a=0;i();setInterval(f,4000);
</script>
</body>
</html>
Penso che spero di impostare le proprietà di transizione specifiche del fornitore (moz/o/webkit) poiché tutti i browser moderni sono stati in grado di eseguire le transizioni per anni. – Rob
Rob, grazie per il tuo commento. Non sono a terra, capisco cosa intendi. Puoi mostrarmi aggiungendolo al codice? – user1087110
Immagino di essermi perso il fatto che tu avessi già gli altri fornitori nel tuo esempio di markup completo. Ho solo guardato le due righe in alto. – Rob