>  기사  >  웹 프론트엔드  >  CSS3实现简单的幻灯片_html/css_WEB-ITnose

CSS3实现简单的幻灯片_html/css_WEB-ITnose

WBOY
WBOY원래의
2016-06-24 11:39:08777검색

<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><title>css3 幻灯片</title><style type="text/css">.ani {width: 480px;height: 320px;margin: 50px auto;overflow: hidden;box-shadow: 0 0 5px rgba(0, 0, 0, 1);background-size: cover;background-position: center;-webkit-animation-name: "loops";-webkit-animation-duration:20s;-webkit-animation-iteration-count: infinite;}@-webkit-keyframes "loops" {0% {background: url('img/1.jpg') no-repeat;}25% {background: url('img/2.jpg') no-repeat;}50% {background: url('img/3.jpg') no-repeat;}75% {background: url('img/4.jpg') no-repeat;}100% {background: url('img/5.jpg') no-repeat;}}</style></head><body><div class="ani"></div></body></html>

 

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.