transform属性和transition过渡属性,结合jQuery代码实现翻转功能。
1 2 3 4 53d翻转相册 6 7
font-size: 50px;
28 } 29 /*设置不同的bgc,方便区分*/ 30 .item:nth-child(1) { 31 /*background-image: url("images/01.jpg");*/ 32 background-color: #cc1188; 33 } 34 .item:nth-child(2) { 35 /*background-image: url("images/02.jpg");*/ 36 background-color: #0094ff; 37 } 38 .item:nth-child(3) { 39 /*background-image: url("images/03.jpg");*/ 40 background-color: #22ff22; 41 } 42 .item:nth-child(4) { 43 /*background-image: url("images/04.jpg");*/ 44 background-color: #666666; 45 } 46 /*定义动画*/ 47 @keyframes autoMove { 48 from { } 49 to { 50 transform: rotateX(360deg); 51 } 52 } 53 /*设置左右翻页箭头样式*/ 54 .left, .right { 55 width: 50px; 56 height: 50px; 57 line-height: 50px; 58 text-align: center; 59 color: white; 60 font-size: 50px; 61 background-color: darkslategray; 62 opacity: .5; 63 position: absolute; 64 top: 50%; 65 margin-top: -25px; 66 cursor: pointer; 67 } 68 .left { 69 left: -25px; 70 } 71 .right { 72 right: -25px; 73 } 74 75