많은 친구들이 알고 있듯이, 저자는 최근 모바일 측에서 반응형 레이아웃을 갖춘 적응형 페이지를 개발하고 있습니다. 이제 제가 방금 완성한 작은 데모를 공유하겠습니다.
html:
<!doctype html><html lang="en"><head><meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no"><meta name='apple-mobile-web-app-capable' content='yes' /><meta name="format-detection" content="telephone=no" /><meta http-equiv='Content-Type' content='textml;charset=UTF-8' /><title>移动端</title><link rel="stylesheet" href="css/style.css" type="text/css" /></head><body> <div class="img"> <img src="images/img-1.jpg" /></div> <script type="text/javascript"> function imgAnimation(){ var imgObj = document.getElementsByTagName("div")[0]; imgObj.onclick =function(){ if(imgObj){ imgObj.className = "img imgAnimation"; } } } imgAnimation(); </script></body></html>
css:
@charset "utf-8";/* CSS Document */body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,form,input,table,tbody,p,th,td{ -webkit-text-size-adjust:none; margin: 0; padding: 0; border: none; -webkit-tap-highlight-color:rgba(0,0,0,0); font-size: 1em; font-family:"Microsoft Yahei","微软雅黑",Tahoma,Arial,Helvetica ,STHeiti; color: #4c4948; }html,body{ min-height:100%; }img,input,button,a,select,textarea{ margin: 0; padding: 0; resize:none; border:none; outline:none; } ol,ul { list-style:none; } h1,h2,h3,h4,h5,h6,p,em{ font-size:100%; word-wrap:break-word; font-weight: normal; font-style: normal; }a:active, a:focus{ outline:none; }button::-moz-focus-inner,input::-moz-focus-inner{ padding:0; border:0; }table{ border-collapse:collapse; border-spacing:0; }.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; font-size:0; }.clearfix{ zoom:1; }a{ color: #4c4948; text-decoration: none; }.img{ width: 190px; height: 120px; padding: 3px; border: 1px solid #ccc; position: absolute;z-index: 12; top: 50px; left: 50%; margin-left: -95px; } /*动画名字, 动画运行的时间,alternate平滑过渡, infinite是反复执行*/ .imgAnimation{ animation-name: imgAnimation; animation: imgAnimation 2s alternate infinite; -webkit-animation: imgAnimation 2s alternate infinite; -moz-animation: imgAnimation 2s alternate infinite; } /* @-webkit-keyframes imgAnimation{ 0%{ left: -198px} 100%{ left: 50%;} } @-moz-keyframes imgAnimation{ 0%{ left: -198px} 100%{ left: 50%;} } */ @-webkit-keyframes imgAnimation{ 0%{ opacity: 0} 50%{ opacity: 0.5} 100%{ opacity: 1} } @-moz-keyframes imgAnimation{ 0%{ opacity: 0} 50%{ opacity: 0.5} 100%{ opacity: 1} }
css에서 차단된 코드 부분은 이미지가 날아가는 CSS입니다. 간단하고 실용적이며 손으로 쓰는 js보다 훨씬 편리합니다. 예전에.
【관련 추천】
CSS3를 사용하여 8가지 유형의 코드를 만드는 방법을 알려줍니다. 애니메이션 로딩
3.CSS를 사용하여 표준 원형 패턴을 그리는 방법을 배웁니다.
4. 둥근 사각형 상자를 완성하는 CSS3 코드 튜토리얼 효과
5. 표준화된 방식으로 CSS 스타일을 작성하는 방법을 배웁니다
위 내용은 이미지 플라이인 및 페이드아웃 효과를 구현하기 위한 h5+css3의 코드 예제의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!