㈠ 网页设计中怎样插入动态图
动态图是GIF扩展名的图片,你只需使用img标签就行了。
<imgsrc="图片地址"width="宽度"height="高度"alt="图片说明"/>
㈡ 如何给html页面添加动态等待效果
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>
㈢ HTML怎么用动态图片做背景
你好,方式有很多哦,随便列举3种方式:
使用本身就是动态变化的(gif)作背景。但是gif图不仅要求图片长宽大,而且清晰度也要高。
使用几张图片,用javascript每隔一段时间刷新背景图片的url地址为每一张图片。
使用HTML5 动画技术。
㈣ 怎么用代码将两个动态图案并排表示
用代码将两个动态图案并排表示
用下面的html源代码就可以将两个广告或者图片并排显示:
<table align=center><tr><td><table border="0〃 align="left"style="margin-left:30px"><tr><td>
广告代码1</td></tr></table></td><td><table border="0〃 align="left"
><tr><td>
广告代码2
</td></tr></table></td></tr></table>
但是里面可以加多一项参数,就是两个图片之间的间距,用这个代码设置图片代码的时候,会发现两张图片是紧挨在一起的,如果不想这两个图片挨的这么近,可以给其中一个图片加多一个间距的html代码:style="margin-left:30px" 。 (左侧空30个像素的距离)
数值可以根据你自己的需要进行设置。
上面修改后的完整源代码如下:
<table align=center><tr><td><table border="0〃 align="left"style="margin-left:30px"><tr><td>
<a href="http://www.xxx.com" target='_blank'><img src="http://xxx.com/name.gif&type=gif" ></a></td></tr></table></td><td><table border="0〃 align="left"
><tr><td>
<a href="http://www.xxx.com" target='_blank'><img src="http://xxx.com/name.gif&type=gif"style="margin-left:30px"></a>
</td></tr></table></td></tr></table>