Line 263: | Line 263: | ||
} | } | ||
− | + | .photo-show { | |
− | + | height: 440px; /*表示したい大きさ*/ | |
− | + | margin: 30px auto; /*縦余白30pxは任意*/ | |
− | + | max-width: 100%; | |
− | + | position: relative; | |
− | + | width: 440px; /*表示したい大きさ、height と合わせる*/ | |
} | } | ||
− | . | + | .photo-show img { |
− | + | animation: show 16s infinite; | |
− | + | -webkit-animation: show 16s infinite; | |
− | + | border-radius: 50%; | |
− | + | height: auto; | |
− | + | max-width: 100%; | |
− | + | opacity: 0; | |
− | } | + | position: absolute; /*画像を全て重ねる*/ |
+ | } | ||
+ | /*アニメーション*/ | ||
− | + | @keyframes show { | |
− | + | 0% {opacity:0} | |
− | + | 5% {opacity:1} | |
− | + | 10% {opacity:1} | |
− | + | 20% {opacity:0} | |
− | + | } | |
+ | |||
+ | @-webkit-keyframes show { | ||
+ | 0% {opacity:0} | ||
+ | 5% {opacity:1} | ||
+ | 10% {opacity:1} | ||
+ | 20% {opacity:0} | ||
} | } | ||
− | + | /*各画像のアニメーションの開始時間をずらす*/ | |
− | + | ||
− | + | .photo-show img:nth-of-type(1) { | |
− | + | animation-delay: 0s; | |
− | + | -webkit-animation-delay: 0s; | |
− | + | } | |
+ | |||
+ | .photo-show img:nth-of-type(2) { | ||
+ | animation-delay: 2s; | ||
+ | -webkit-animation-delay: 2s; | ||
+ | } | ||
+ | |||
+ | .photo-show img:nth-of-type(3) { | ||
+ | animation-delay: 4s; | ||
+ | -webkit-animation-delay: 4s; | ||
+ | } | ||
+ | |||
+ | |||
+ | /*マウスが画像に重なった際、動きを止めて四角くする*/ | ||
+ | |||
+ | .photo-show img { | ||
+ | transition: 0.2s; | ||
+ | -webkit-transition: 0.2s; | ||
} | } | ||
− | + | .photo-show:hover img { | |
− | + | animation-play-state: paused; | |
− | + | -webkit-animation-play-state: paused; | |
− | + | border-radius: 0; | |
− | + | ||
− | + | ||
} | } | ||
</style> | </style> | ||
</html> | </html> |
Revision as of 17:35, 31 October 2017