html5基本结构图解(html5简介及新增功能介绍)
类别:Web前端 浏览量:1427
时间:2021-10-14 00:43:25 html5基本结构图解
html5简介及新增功能介绍
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>audio</title> </head> <body> <audio controls="controls"> <source src="video/Light.mp3" type="audio/mpeg"> <source src="video/Light.ogg" type="audio/ogg"> 您的浏览器太low了 </audio> <video controls muted poster="img/1.jpg" alt="html5基本结构图解(html5简介及新增功能介绍)" border="0" />
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>css3</title> </head> <style> ul li:nth-child(odd) { background-color: cornflowerblue; } ul { display: inline-grid; width: 200px; margin-left: -39px; list-style: none; text-align: center; } li::before { display: inline-block; content: "我想"; width: 100px; height: 100px; background-color: pink; } li::after { display: inline-block; content: "飞的更高"; width: 100px; height: 100px; background-color: pink; } </style> <body> <li> <ul> <li>1</li> <li>4</li> <li>4</li> <li>4</li> <li>4</li> </ul> </li> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>动画</title> </head> <style> /*from 和 to 等价于 0% 和 100%*/ /*@keyframes move {*/ /*0%{*/ /*transform:translateX(0px);*/ /*}*/ /*100%{*/ /*transform:translateX(1000px);*/ /*}*/ /*}*/ .bowen { position: fixed; top: 50%; left: 50%; width: 200px; height: 200px; transform: translate(-50%, -50%); background-color: pink; } .bowen li[class^="dotted"] { position: absolute; top: 50%; left: 50%; width: 8px; height: 8px; transform: translate(-50%, -50%); background-color: deepskyblue; border-radius: 50%; } @keyframes pulse { 0% { } 70% { width: 100px; height: 100px; opacity: 1; } 100% { width: 100px; height: 100px; opacity: 0; } } .bowen li.dotted2, .bowen li.dotted3, .bowen li.dotted4 { background-color: transparent; box-shadow: 0 0 8px deepskyblue; animation: pulse 1.2s linear infinite forwards; } .bowen li.dotted2 { animation-delay: 0.4s; } .bowen li.dotted3 { animation-delay: 0.8s; } </style> <body> <li class="bowen"> <li class="dotted1"></li> <li class="dotted2"></li> <li class="dotted3"></li> <li class="dotted4"></li> </li> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>3D</title> </head> <style> body { perspective: 500px; } .box { position: relative; width: 200px; height: 200px; margin: 0 auto; transform-style: preserve-3d; transition: all .3s; } .box li { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: cornflowerblue; } .box li:last-child { background-color: aliceblue; transform: rotateX(60deg); } .box:hover { transform: rotate3D(0, 1, 0, 60deg); } </style> <body> <li class="box"> <li></li> <li></li> </li> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>导航栏</title> </head> <style> li { float: left; padding: 0 10px; list-style: none; perspective: 500px; } .box { position: relative; width: 200px; height: 50px; transform-style: preserve-3d; transition: all .5s; } .box li { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: pink; text-align: center; line-height: 50px; } .box li:nth-child(1) { transform: translateZ(25px); } .box li:nth-child(2) { background-color: purple; /*必须先移动后旋转*/ transform: translateY(25px) rotateX(-90deg); } .box:hover { transform: rotateX(90deg); } </style> <body> <ul> <li> <li class="box"> <li>好好学习</li> <li>天天向上</li> </li> </li> <li> <li class="box"> <li>好好学习</li> <li>天天向上</li> </li> </li> <li> <li class="box"> <li>好好学习</li> <li>天天向上</li> </li> </li> <li> <li class="box"> <li>好好学习</li> <li>天天向上</li> </li> </li> </ul> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>旋转木马</title> </head> <style> section { position: fixed; top: 50%; left: 50%; width: 300px; height: 200px; transform: translate(-50%, -50%); perspective: 2500px; } section li.box { position: relative; transform-style: preserve-3d; animation: move 15s linear infinite; background: url("img/4.jpg" alt="html5基本结构图解(html5简介及新增功能介绍)" border="0" />
总结
到此这篇关于html5简介及新增功能介绍的文章就介绍到这了,更多相关html5简介新增功能内容请搜索开心学习网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持开心学习网!
您可能感兴趣
- html5怎么修改背景颜色(HTML5 body设置全屏背景图片的示例代码)
- html5标签怎么做(html5用video标签流式加载的实现)
- html5文档的基本结构及必要的注释(关于HTML5+ API plusready的兼容问题)
- html5带图标下拉菜单(html5小程序飞入购物车抛物线绘制运动轨迹点)
- html5常用标记(HTML5超文本标记语言的实现方法)
- 只用html5简单动画代码(HTML5 3D书本翻页动画的实现示例)
- html5循环及条件指令(html5实现滑块功能之type="range"属性)
- html5canvas画图有什么用(Html5基于canvas实现电子签名并生成PDF文档)
- html5入门布局(吃透移动端 Html5 响应式布局)
- html5 固定图片(HTML5拖放API实现自动生成相框功能)
- html5表单实例(使用HTML5和CSS3表单验证功能)
- html5 video标签
- html5自动轮播图代码(HTML5播放实现rtmp流直播)
- html5图片上下滚动(HTML5 图片悬停放大的实现代码示例)
- html5代码之翻页(HTML5实现直播间评论滚动效果的代码)
- html5+canvas动画(解析html5 canvas实现背景鼠标连线动态效果代码)
- 上海迪士尼攻略(上海迪士尼攻略旅游)
- 哪里可以看熊猫(成都哪里可以看熊猫)
- oppo手机的三种录屏方法,你知道有哪些吗(oppo手机的三种录屏方法)
- 吉林神秘传染链跨省 传染源尚未找到,舒兰 封城(吉林神秘传染链跨省)
- 吉林舒兰 封城 聚集性疫情传播链已延至沈阳,有一个细节让人忧心(吉林舒兰封城)
- 1天密接者猛增77人,患者轨迹透露危险信号 吉林市全面封闭管理(1天密接者猛增77人)
热门推荐
- python 正则表达式菜鸟教程(详解Python正则表达式re模块)
- UrlHelper、HtmlHelper的使用
- jenkins 设置gitlab(jenkins+gitlab+nginx部署前端应用实现)
- react判断数据格式(详解Ref在React中的交叉用法)
- mysql的默认事务隔离级别(啥是 MySQL 事务隔离级别?)
- 程序员哪些情况可以考虑辞职
- php面向对象怎么调用属性(PHP面向对象程序设计__tostring和__invoke用法分析)
- sql 如何拆分字符串(SQL Server实现将特定字符串拆分并进行插入操作的方法)
- sqlserver统计表大小(SqlServer 垂直分表减少程序改动)
- tomcat架构结构图(Tomcat核心组件及应用架构详解)