﻿
.cover{
 width:200px;
 height:200px;
 animation:flip-animate 20s linear infinite; /*   Làm xoay các ảnh */
 transform-style:preserve-3d; /*   các thành phần bên trong class cover sẽ hiển thị dưới dạng 3D */
}
#container_Logo .cover div{
 width:200px;
 height:200px;
 position:absolute;
}
#container_Logo .cover .front{
 transform:translateZ(0px);/*   định vị lại ảnh trong class front dọc theo trục z trong không gian 3D */
}

@keyframes flip-animate{
 0%{transform:rotateY(0deg);}
 100%{transform:rotateY(360deg);}
}/* điều khiển các hiệu ứng của thuộc tính animation */

