<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>动画效果</title>
<style>
.animation1 {
width:100px;
height:100px;
background:red;
position:relative;
animation:myfirst 5s;
-moz-animation:myfirst 5s; /* Firefox */
-webkit-animation:myfirst 5s; /* Safari and Chrome */
-o-animation:myfirst 5s; /* Opera */
}
@keyframes myfirst {
0% {background:red; left:0px; top:0px;}
25% {background:yellow; left:200px; top:0px;}
50% {background:blue; left:200px; top:200px;}
75% {background:green; left:0px; top:200px;}
100% {background:red; left:0px; top:0px;}
}
/* Firefox */
@-moz-keyframes myfirst {
0% {background:red; left:0px; top:0px;}
25% {background:yellow; left:200px; top:0px;}
50% {background:blue; left:200px; top:200px;}
75% {background:green; left:0px; top:200px;}
100% {background:red; left:0px; top:0px;}
}
/* Safari and Chrome */
@-webkit-keyframes myfirst {
0% {background:red; left:0px; top:0px;}
25% {background:yellow; left:200px; top:0px;}
50% {background:blue; left:200px; top:200px;}
75% {background:green; left:0px; top:200px;}
100% {background:red; left:0px; top:0px;}
}
/* Opera */
@-o-keyframes myfirst {
0% {background:red; left:0px; top:0px;}
25% {background:yellow; left:200px; top:0px;}
50% {background:blue; left:200px; top:200px;}
75% {background:green; left:0px; top:200px;}
100% {background:red; left:0px; top:0px;}
}
.newspaper
{
margin-top: 50px;
-moz-column-count:3; /* Firefox */
-webkit-column-count:3; /* Safari and Chrome */
column-count:3;
}
</style>
</head>
<body>
<p><b>注释:</b>本例在 Internet Explorer 中无效。</p>
<div class="animation1"></div>
<p><b>注释:</b>Internet Explorer 不支持 column-count 属性。</p>
<div class="newspaper">
人民网北京2月24日电 (记者 刘阳)国家发展改革委近日发出通知,决定自2月25日零时起将汽、柴油价格每吨分别提高300元和290元,折算到90号汽油和0号柴油(全国平均)每升零售价格分别提高0.22元和0.25元。
此次国内成品油价格调整幅度,是按照现行国内成品油价格形成机制,根据国际市场油价变化情况确定的。去年11月16日国内成品油价格调整以来,受市场预期欧美经济复苏前景向好以及中东局势持续动荡等因素影响,国际市场原油价格先抑后扬,2月上旬WTI和布伦特原油期货价格再次回升至每桶95美元和115美元以上。虽然近两日价格有所回落,但国内油价挂钩的国际市场三种原油连续22个工作日移动平均价格上涨幅度已超过4%,达到国内成品油价格调整的边界条件。
通知指出,这次成品油调价后,国家将按照已建立的补贴机制,继续对种粮农民、渔业(含远洋渔业)、林业、城市公交、农村道路客运(含岛际和农村水路客运)等给予补贴。同时,为保证市场物价基本稳定,防止连锁涨价,对与居民生活密切相关的铁路客运、城市公交、农村道路客运(含岛际和农村水路客运)价格不作调整。
通知要求,中石油、中石化、中海油三大公司要组织好成品油生产和调运,保持合理库存,加强综合协调和应急调度,保障成品油供应。各级价格主管部门要加大市场监督检查力度,依法查处不执行国家价格政策,以及囤积居奇、造谣惑众、合谋涨价、搭车涨价等违法行为,维护正常市场秩序。
</div>
</body>
</html>
<!--<!DOCTYPE html>-->
<!--<html>-->
<!--<head>-->
<!-- <style>-->
<!-- div-->
<!-- {-->
<!-- width:100px;-->
<!-- height:100px;-->
<!-- background:red;-->
<!-- position:relative;-->
<!-- animation:myfirst 5s linear 2s infinite alternate;-->
<!-- /* Firefox: */-->
<!-- -moz-animation:myfirst 5s linear 2s infinite alternate;-->
<!-- /* Safari and Chrome: */-->
<!-- -webkit-animation:myfirst 5s linear 2s infinite alternate;-->
<!-- /* Opera: */-->
<!-- -o-animation:myfirst 5s linear 2s infinite alternate;-->
<!-- }-->
<!-- @keyframes myfirst-->
<!-- {-->
<!-- 0% {background:red; left:0px; top:0px;}-->
<!-- 25% {background:yellow; left:200px; top:0px;}-->
<!-- 50% {background:blue; left:200px; top:200px;}-->
<!-- 75% {background:green; left:0px; top:200px;}-->
<!-- 100% {background:red; left:0px; top:0px;}-->
<!-- }-->
<!-- @-moz-keyframes myfirst /* Firefox */-->
<!-- {-->
<!-- 0% {background:red; left:0px; top:0px;}-->
<!-- 25% {background:yellow; left:200px; top:0px;}-->
<!-- 50% {background:blue; left:200px; top:200px;}-->
<!-- 75% {background:green; left:0px; top:200px;}-->
<!-- 100% {background:red; left:0px; top:0px;}-->
<!-- }-->
<!-- @-webkit-keyframes myfirst /* Safari and Chrome */-->
<!-- {-->
<!-- 0% {background:red; left:0px; top:0px;}-->
<!-- 25% {background:yellow; left:200px; top:0px;}-->
<!-- 50% {background:blue; left:200px; top:200px;}-->
<!-- 75% {background:green; left:0px; top:200px;}-->
<!-- 100% {background:red; left:0px; top:0px;}-->
<!-- }-->
<!-- @-o-keyframes myfirst /* Opera */-->
<!-- {-->
<!-- 0% {background:red; left:0px; top:0px;}-->
<!-- 25% {background:yellow; left:200px; top:0px;}-->
<!-- 50% {background:blue; left:200px; top:200px;}-->
<!-- 75% {background:green; left:0px; top:200px;}-->
<!-- 100% {background:red; left:0px; top:0px;}-->
<!-- }-->
<!-- </style>-->
<!--</head>-->
<!--<body>-->
<!--<p><b>注释:</b>本例在 Internet Explorer 中无效。</p>-->
<!--<div></div>-->
<!--</body>-->
<!--</html>-->
没有合适的资源?快使用搜索试试~ 我知道了~
学习HTML语法.zip
共8个文件
html:7个
jpg:1个
5星 · 超过95%的资源 需积分: 1 1 下载量 24 浏览量
2024-01-05
23:31:33
上传
评论 1
收藏 69KB ZIP 举报
温馨提示
学习HTML语法学习HTML语法学习HTML语法学习HTML语法学习HTML语法 学习HTML语法学习HTML语法学习HTML语法学习HTML语法学习HTML语法 学习HTML语法学习HTML语法学习HTML语法学习HTML语法学习HTML语法 学习HTML语法学习HTML语法学习HTML语法学习HTML语法学习HTML语法 学习HTML语法学习HTML语法学习HTML语法学习HTML语法学习HTML语法 学习HTML语法学习HTML语法学习HTML语法学习HTML语法学习HTML语法 学习HTML语法学习HTML语法学习HTML语法学习HTML语法学习HTML语法 学习HTML语法学习HTML语法学习HTML语法学习HTML语法学习HTML语法 学习HTML语法学习HTML语法学习HTML语法学习HTML语法学习HTML语法 学习HTML语法学习HTML语法学习HTML语法学习HTML语法学习HTML语法 学习HTML语法学习HTML语法学习HTML语法学习HTML语法学习HTML语法 学习HTML语法学习HTML语法学习HTML语法学习HTML语法学习HTML语法 学习HTML语法
资源推荐
资源详情
资源评论
收起资源包目录
学习HTML语法.zip (8个子文件)
code_111230
w3c_standard
图像标签.html 2KB
列表标签.html 2KB
表格标签.html 2KB
动画.html 6KB
a标签.html 1KB
文本格式.html 808B
html基础.html 2KB
images
kobe.jpg 66KB
共 8 条
- 1
资源评论
- 龙年行大运2024-11-08发现一个宝藏资源,赶紧冲冲冲!支持大佬~
辣椒种子
- 粉丝: 4090
- 资源: 5735
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- session身份认证Demo
- 基于FlaskWebIDSKDD99深度学习入侵检测 框架 html + css + jquery + python 3.9
- (源码)基于JavaWeb的枫叶网上书店系统.zip
- (源码)基于Zabbix框架的分布式监控系统.zip
- 基于PythonSnort入侵检测IDS系统 框架 html + css + jquery + echart + python
- (源码)基于Spring Boot和Vue的SaaS多租户管理系统.zip
- (源码)基于C++的员工管理系统.zip
- VMware Workstation Pro 17.6.0
- (源码)基于C++和OpenCV的3D模型渲染系统.zip
- (源码)基于nodeMCU esp8266的智能植物监控系统.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功