如何给html页面添加动态等待效果
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何给html页面添加动态等待效果相关的知识,希望对你有一定的参考价值。
参考技术A 楼上的总结也很全面,我从我的经验中总结如下1:ajax请求过程绑定beforeSend方法。
2:触发事件时显示loading部分html。完成后再隐藏html 参考技术B 1、直接贴图:
在界面上贴一个gif动态等待效果图片
gif图片获取方式:网上找素材,会ps的可以自己制作
<img src="wait.gif" />
2、CSS3/SVG/HTML5 Canvas手动绘制等待效果:
这种效果:网上有很多类似素材,可以根据需要选择,或使用上述技术绘制
下面提供一个CSS3绘制的范例
<style>
.loading
width:0;
height:0;
border-right:20px solid #fff;
border-top:20px solid #000;
border-left:20px solid #fff;
border-bottom:20px solid #000;
border-radius: 20px;
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
.loading
animation: bganim 0.6s linear 0s infinite;
-moz-animation: bganim 0.6s linear 0s infinite;
-webkit-animation: bganim 0.6s linear 0s infinite;
@keyframes bganim
from transform:rotate(0deg); to transform:rotate(360deg);
@-moz-keyframes bganim
from -moz-transform:rotate(0deg); to -moz-transform:rotate(360deg);
@-webkit-keyframes bganim
from -webkit-transform:rotate(0deg); to -webkit-transform:rotate(360deg);
</style>
<label>CSS3效果</label>
<div class="loading"></div>
-------------------------------------------------
效果如下图:
运行机制很简单,先手动绘制一个静态的图,然后控制对应div进行360度旋转,即可实现
3、使用js等待效果插件(如:spin.js)
JS
-----------------------------------------------------
var opts =
lines: 9,
length: 0,
width: 15,
radius: 20,
corners: 1,
rotate: 0,
direction: 1,
color: '#0101DF',
speed: 1,
trail: 34,
shadow: false,
hwaccel: false,
className: 'spinner',
zIndex: 2e9,
top: '50%',
left: '50%'
;
var target = document.getElementById('img_wait');
var spinner = new Spinner(opts).spin(target);
7
html
---------------------------------
<div id="img_wait"></div>本回答被提问者采纳
如何给文字添加模糊效果
下面介绍如何给一端文字添加一种若隐若现的模糊效果:
<!DOCTYPE HTML> <html> <head> <mata http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>relative样式</title> <style type="text/css"> p{ color:#369 } p{ border-bottom:1px dotted #ccc;} p{ text-shadow:0 0 10px #000; color:rgba(255,255,255,0); transition:text-shadow 20s, color 20s; } p:hover{ text-shadow: 0 0 0.5px #39aaac; color:#40cccc; transition:text-shadow 20s, color 20s; } </style> </head> <body> <p>《鹅》</p> <p>鹅鹅鹅</p> <p>曲颈向天歌</p> <p>白毛浮绿水</p> <p>红掌拨清波</p> </body> </html>
效果如下,可以自己试试哦~
以上是关于如何给html页面添加动态等待效果的主要内容,如果未能解决你的问题,请参考以下文章