广告
返回顶部
首页 > 资讯 > 精选 >html5中新增功能有哪些
  • 215
分享到

html5中新增功能有哪些

2023-06-09 11:06:37 215人浏览 薄情痞子
摘要

这篇文章主要介绍了HTML5中新增功能有哪些,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。<!DOCTYPE html><html la

这篇文章主要介绍了HTML5中新增功能有哪些,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。

html5中新增功能有哪些

html5中新增功能有哪些

html5中新增功能有哪些

html5中新增功能有哪些

html5中新增功能有哪些

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.png" width="300px" height="300px">    <source src="video/Light.mp3" type="video/mp3">    <source src="video/Light.mp3" type="video/ogg">    您的浏览器太low</video><fORM action="">    <ol>        <li>邮箱:<input type="email"></li>        <li>网址:<input type="url"></li>        <li>日期:<input type="date"></li>        <li>数量:<input type="number"></li>        <li>日期:<input type="time"></li>        <li>手机号:<input type="tel"></li>        <li>搜索:<input type="search"></li>        <li>颜色:<input type="color"></li>        <li>不能为空:<input type="text" required="required"></li>        <li>提示为本:<input type="text" placeholder="啦啦啦  我是卖报的"></li>        <li>自动获得鼠标焦点:<input type="text" autofocus="autofocus"></li>        <li><input type="text" autocomplete="on" name="autocomplete"></li>        <li><input type="submit" value="提交"></li>    </ol>    <hr></form><form action="">    <ul>        <li><input type="file" name="" id="" multiple></li>        <li><input type="submit" value="提交"></li>    </ul></form></body></html>

html5中新增功能有哪些

html5中新增功能有哪些

<!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;    }    div::before {        display: inline-block;        content: "我想";        width: 100px;        height: 100px;        background-color: pink;    }    div::after {        display: inline-block;        content: "飞的更高";        width: 100px;        height: 100px;        background-color: pink;    }</style><body><div>    <ul>        <li>1</li>        <li>4</li>        <li>4</li>        <li>4</li>        <li>4</li>    </ul></div></body></html>

html5中新增功能有哪些

html5中新增功能有哪些

html5中新增功能有哪些

html5中新增功能有哪些
html5中新增功能有哪些
html5中新增功能有哪些
html5中新增功能有哪些

html5中新增功能有哪些

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>动画</title></head><style>                                        .bowen {        position: fixed;        top: 50%;        left: 50%;        width: 200px;        height: 200px;        transform: translate(-50%, -50%);        background-color: pink;    }    .bowen div[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 div.dotted2,    .bowen div.dotted3,    .bowen div.dotted4 {        background-color: transparent;        box-shadow: 0 0 8px deepskyblue;        animation: pulse 1.2s linear infinite forwards;    }    .bowen div.dotted2 {        animation-delay: 0.4s;    }    .bowen div.dotted3 {        animation-delay: 0.8s;    }</style><body><div class="bowen">    <div class="dotted1"></div>    <div class="dotted2"></div>    <div class="dotted3"></div>    <div class="dotted4"></div></div></body></html>

html5中新增功能有哪些

html5中新增功能有哪些

html5中新增功能有哪些

<!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 div {        position: absolute;        top: 0;        left: 0;        width: 100%;        height: 100%;        background-color: cornflowerblue;    }    .box div:last-child {        background-color: aliceblue;        transform: rotateX(60deg);    }    .box:hover {        transform: rotate3D(0, 1, 0, 60deg);    }</style><body><div class="box">    <div></div>    <div></div></div></body></html>

html5中新增功能有哪些

<!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 div {        position: absolute;        top: 0;        left: 0;        width: 100%;        height: 100%;        background-color: pink;        text-align: center;        line-height: 50px;    }    .box div:nth-child(1) {        transform: translateZ(25px);    }    .box div:nth-child(2) {        background-color: purple;                transform: translateY(25px) rotateX(-90deg);    }    .box:hover {        transform: rotateX(90deg);    }</style><body><ul>    <li>        <div class="box">            <div>好好学习</div>            <div>天天向上</div>        </div>    </li>    <li>        <div class="box">            <div>好好学习</div>            <div>天天向上</div>        </div>    </li>    <li>        <div class="box">            <div>好好学习</div>            <div>天天向上</div>        </div>    </li>    <li>        <div class="box">            <div>好好学习</div>            <div>天天向上</div>        </div>    </li></ul></body></html>

html5中新增功能有哪些

<!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 div.box {        position: relative;        transform-style: preserve-3d;        animation: move 15s linear infinite;        background: url("img/4.jpg") no-repeat;        background-size: 300px 200px;    }    div {        position: absolute;        top: 0;        left: 0;        width: 100%;        height: 100%;    }    div:nth-child(1) {        background: url("img/3.jpg") no-repeat;        background-size: 300px 200px;        transform: rotateY(0) translateZ(400px);    }    div:nth-child(2) {        background: url("img/9.jpg") no-repeat;        background-size: 300px 200px;        transform: rotateY(60deg) translateZ(400px);    }    div:nth-child(3) {        background: url("img/5.jpg") no-repeat;        background-size: 300px 200px;        transform: rotateY(120deg) translateZ(400px);    }    div:nth-child(4) {        background: url("img/6.jpg") no-repeat;        background-size: 300px 200px;        transform: rotateY(180deg) translateZ(400px);    }    div:nth-child(5) {        background: url("img/7.jpg") no-repeat;        background-size: 300px 200px;        transform: rotateY(240deg) translateZ(400px);    }    div:nth-child(6) {        background: url("img/8.jpg") no-repeat;        background-size: 300px 200px;        transform: rotateY(300deg) translateZ(400px);    }    @keyframes move {        0% {            transform: rotateY(0);        }        100% {            transform: rotateY(360deg);        }    }    .box:hover{        animation-play-state: paused;    }</style><body><section>    <div class="box">        <div></div>        <div></div>        <div></div>        <div></div>        <div></div>        <div></div>    </div></section></body></html>

html5中新增功能有哪些

html5中新增功能有哪些

感谢你能够认真阅读完这篇文章,希望小编分享的“html5中新增功能有哪些”这篇文章对大家有帮助,同时也希望大家多多支持编程网,关注编程网精选频道,更多相关知识等着你来学习!

--结束END--

本文标题: html5中新增功能有哪些

本文链接: https://www.lsjlt.com/news/255787.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
  • html5中新增功能有哪些
    这篇文章主要介绍了html5中新增功能有哪些,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。<!DOCTYPE html><html la...
    99+
    2023-06-09
  • HTML5新增哪些功能
    本篇内容主要讲解“HTML5新增哪些功能”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“HTML5新增哪些功能”吧!一、HTML5概念HTML5并不仅仅只是做为HTML标记语言的一个最新版本,更重...
    99+
    2023-06-05
  • HTML5新增加的功能有哪些
    这篇文章主要介绍了HTML5新增加的功能有哪些,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。HTML5现在已经不是SGML的子集,主要是增加...
    99+
    2022-10-19
  • HTML5有哪些新增加标签和功能
    这篇文章给大家分享的是有关HTML5有哪些新增加标签和功能的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。HTML5现在已经不是SGML的子集,主要是增加了关于图像,位置,存储,多...
    99+
    2022-10-19
  • WordPress 2.8新增功能有哪些
    WordPress 2.8新增功能有哪些?WordPress 2.8的发布,为WordPress网站开发者带来了更多的便利,让像WPYOU这样的基于WordPress的开发服务商,在主题开发上有了更多的可操作和自定义功能,以下是WordPr...
    99+
    2018-01-24
    WordPress
  • NumPy新增的功能有哪些
    本篇内容主要讲解“NumPy新增的功能有哪些”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“NumPy新增的功能有哪些”吧!作为 Python 语言的一个扩展程序...
    99+
    2022-10-19
  • Silverlight 4.0新增功能有哪些
    小编给大家分享一下Silverlight 4.0新增功能有哪些,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!Silverlight 4.0看来已经跃跃欲试了,尽管Silverlight3刚刚发布。从微软正式公布的新功能看,...
    99+
    2023-06-17
  • JDK15新增的功能有哪些
    本篇内容介绍了“JDK15新增的功能有哪些”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!发布版本说明根据发布的规划,这次发布的 JDK 15...
    99+
    2023-06-27
  • html5中有哪些新增标签
    html5中新增标签有:1、格式标签:“<bdi>、<mark>、<meter>、<progress>、<rp>、<rt>、<ruby>、<time&...
    99+
    2022-10-24
  • WSH 5.6有哪些新增的功能
    这篇文章主要介绍“WSH 5.6有哪些新增的功能”,在日常操作中,相信很多人在WSH 5.6有哪些新增的功能问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”WSH 5.6有哪些新增的功能”的疑惑有所帮助!接下来...
    99+
    2023-06-08
  • Visual Studio 2010中新增小功能有哪些
    本篇文章给大家分享的是有关Visual Studio 2010中新增小功能有哪些,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。Visual Studio 2010不仅仅是在代码...
    99+
    2023-06-17
  • html5新增标签有哪些
    这篇文章给大家分享的是有关html5新增标签有哪些的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。   html5新增标签有:1、video,表示一段视频并提供播放的用户界面;2...
    99+
    2022-10-19
  • Hydra 8.4/8.5新增的功能有哪些
    这篇文章主要介绍了Hydra 8.4/8.5新增的功能有哪些,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。Hydra 8.4/8.5新增功能Kali Linux 2017.1...
    99+
    2023-06-04
  • Dreamweaver CS4新增相关功能有哪些
    小编给大家分享一下Dreamweaver CS4新增相关功能有哪些,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!Adobe 出品的CS4系列开始销售了,我们关注下...
    99+
    2023-06-08
  • MySQL重大新增的功能有哪些
    这篇文章主要讲解了“MySQL重大新增的功能有哪些”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“MySQL重大新增的功能有哪些”吧!一、MySQL的天然短板...
    99+
    2022-10-18
  • ADO.NET3.5新增了哪些功能
    本篇内容介绍了“ADO.NET3.5新增了哪些功能”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!ADO.NET3.5的新增重要方法:新增了L...
    99+
    2023-06-17
  • html5新增的标签有哪些
    本教程操作环境:windows7系统、HTML5版、Dell G3电脑。HTML5是HTML的最新版本,由W3C在2014年完成标准定制。增强的浏览器本机功能,减少了浏览器插件(如:flash)应用程序,提高了用户体验满意度,使开发更加方便...
    99+
    2022-11-23
    html5
  • html5中新增加的属性有哪些
    这篇文章主要介绍了html5中新增加的属性有哪些,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。 html5中新增...
    99+
    2022-10-19
  • html5中新增了哪些新特性
    小编给大家分享一下html5中新增了哪些新特性,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!html5的新特性:1、用于绘画的canvas元素;2、用于媒介回放的...
    99+
    2023-06-14
  • Groovy 1.7版的新增功能特性有哪些
    这篇文章主要为大家展示了“Groovy 1.7版的新增功能特性有哪些”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“Groovy 1.7版的新增功能特性有哪些”这篇文章吧。基于JVM的新型编程语言...
    99+
    2023-06-17
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作