① 如何将几张连续的图片设置成动态图
你是用PS还是
美图秀秀
呀,PS就把那些图片拉到同一文件里但要不同的图层,打开窗口下的动画工具栏,接着把全部隐藏留一张你要的显示的一张,动画
工具条
上点新建帧隐藏全部只显示你要显示的那一个图层就可以了。不懂追问
② ppt里怎么 插入 连续的图片
在幻灯片中连续插入多张图片方法如下:
1、点击菜单栏“插入”菜单选项,然后单击“插入”选项卡下的图片按钮。
2、在弹出的“插入图片”对话窗口中,找到图片所放文件夹位置,然后按住键盘上的Ctrl键不放,再鼠标单击需要插入的图片,即可同时选中多张图片,最后单击确定按钮完成操作。
③ 如何在word中连续插入图片,并且要求每页3张图片
你已经在word中插入了大量的图片,看来连续插入图片已不是问题了。关键是想让每页三张。这样想:若图片和word的纸张同样大,那么每页就只能插入一张图片;要想让每页插入三张,则要求每张图片的尺寸(图片的边长)小于纸张的三分之一或不大于其三分之一。只要达到这个要求,就可以在每页上面插入三张图片了。其次是图片尺寸的调整:就是把图片的边长调整到小于纸张的三分之一。一、左键点击在word中插入的图片,图片中间和四角会出现八个方块点,把鼠标放在这些点上,鼠标会出现调整用的双箭头。按住这个双箭头进行拖动,就可以调整图片的大小。拖动四周的方块点,可对图片按比例缩小或放大,拖动四边中间的小方块,可对图片不按比例地调整图片的大小。用这个方法对图片调整后,图片的位置都靠近word左边的边线上。二、右键点击图片,会出现一个对话框:点击下方的“设置图片格式”,又会出现一个对话框,在对话框中点击“版式”,再点击除“嵌入型”以外的任意四个类型,即可对图片的大小、位置进行任意的调整。
④ 如何在电脑上连续截图
1、网络搜索FSCapture,然后进行下载安装应用。
⑤ 怎么在word中连续插入多张图片,且大小一致
工具:word2013
1、打开word 2013,选择“页面布局”选项卡,并单击“页边距”按钮。
⑥ 网页中怎么设置图片连续滚动
JS的吧 ,你看看这个效果行吗 自己换下图片
====================================================================
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>滑动图片</title>
</head>
<body>
<table width="500" height="200" align="center">
<tr><td align="center">
<fieldset style="width:500;height:50"><legend>效果显示区</legend>
<script language="JavaScript1.2">
///////configure the below four variables to change the style of the slider///////
//set the scrollerwidth and scrollerheight to the width/height of the LARGEST image in your slideshow!
var scrollerwidth='200px' //图片显示区的宽度
var scrollerheight='113px'
var scrollerbgcolor='white'
//3000 miliseconds=3 seconds
var pausebetweenimages=3000
//configure the below variable to change the images used in the slideshow. If you wish the images to be clickable, simply wrap the images with the appropriate <a> tag
var slideimages=new Array()
slideimages[0]='<a href="MyJS.htm"><img src="images/1.jpg" border=0"></a>'
slideimages[1]='<a href="MyJS.htm"><img src="images/3.jpg" border=0></a>'
slideimages[2]='<a href="MyJS.htm"><img src="images/6.jpg" border=0></a>'
slideimages[3]='<a href="MyJS.htm"><img src="images/2.jpg" border=0"></a>'
slideimages[4]='<a href="MyJS.htm"><img src="images/5.jpg" border=0></a>'
//extend this list
///////Do not edit pass this line///////////////////////
var ie=document.all
var dom=document.getElementById
if (slideimages.length>1)
i=2
else
i=0
function move1(whichlayer){
tlayer=eval(whichlayer)
if (tlayer.left>0&&tlayer.left<=5){
tlayer.left=0
setTimeout("move1(tlayer)",pausebetweenimages)
setTimeout("move2(document.main.document.second)",pausebetweenimages)
return
}
if (tlayer.left>=tlayer.document.width*-1){
tlayer.left-=5
setTimeout("move1(tlayer)",50)
}
else{
tlayer.left=parseInt(scrollerwidth)+5
tlayer.document.write(slideimages[i])
tlayer.document.close()
if (i==slideimages.length-1)
i=0
else
i++
}
}
function move2(whichlayer){
tlayer2=eval(whichlayer)
if (tlayer2.left>0&&tlayer2.left<=5){
tlayer2.left=0
setTimeout("move2(tlayer2)",pausebetweenimages)
setTimeout("move1(document.main.document.first)",pausebetweenimages)
return
}
if (tlayer2.left>=tlayer2.document.width*-1){
tlayer2.left-=5
setTimeout("move2(tlayer2)",50)
}
else{
tlayer2.left=parseInt(scrollerwidth)+5
tlayer2.document.write(slideimages[i])
tlayer2.document.close()
if (i==slideimages.length-1)
i=0
else
i++
}
}
function move3(whichdiv){
tdiv=eval(whichdiv)
if (parseInt(tdiv.style.left)>0&&parseInt(tdiv.style.left)<=5){
tdiv.style.left=0+"px"
setTimeout("move3(tdiv)",pausebetweenimages)
setTimeout("move4(scrollerdiv2)",pausebetweenimages)
return
}
if (parseInt(tdiv.style.left)>=tdiv.offsetWidth*-1){
tdiv.style.left=parseInt(tdiv.style.left)-5+"px"
setTimeout("move3(tdiv)",50)
}
else{
tdiv.style.left=scrollerwidth
tdiv.innerHTML=slideimages[i]
if (i==slideimages.length-1)
i=0
else
i++
}
}
function move4(whichdiv){
tdiv2=eval(whichdiv)
if (parseInt(tdiv2.style.left)>0&&parseInt(tdiv2.style.left)<=5){
tdiv2.style.left=0+"px"
setTimeout("move4(tdiv2)",pausebetweenimages)
setTimeout("move3(scrollerdiv1)",pausebetweenimages)
return
}
if (parseInt(tdiv2.style.left)>=tdiv2.offsetWidth*-1){
tdiv2.style.left=parseInt(tdiv2.style.left)-5+"px"
setTimeout("move4(scrollerdiv2)",50)
}
else{
tdiv2.style.left=scrollerwidth
tdiv2.innerHTML=slideimages[i]
if (i==slideimages.length-1)
i=0
else
i++
}
}
function startscroll(){
if (ie||dom){
scrollerdiv1=ie? first2 : document.getElementById("first2")
scrollerdiv2=ie? second2 : document.getElementById("second2")
move3(scrollerdiv1)
scrollerdiv2.style.left=scrollerwidth
}
else if (document.layers){
document.main.visibility='show'
move1(document.main.document.first)
document.main.document.second.left=parseInt(scrollerwidth)+5
document.main.document.second.visibility='show'
}
}
window.onload=startscroll
</script>
<ilayer name="main" id="main" width=&{scrollerwidth}; height=&{scrollerheight}; visibility=hide bgColor=&{scrollerbgcolor};>
<layer id="first" left=1 top=0 width=&{scrollerwidth}; >
<script language="JavaScript1.2">
if (document.layers)
document.write(slideimages[0])
</script>
</layer>
<layer id="second" left=0 top=0 width=&{scrollerwidth}; visibility=hide>
<script language="JavaScript1.2">
if (document.layers)
document.write(slideimages[1])
</script>
</layer>
</ilayer>
<script language="JavaScript1.2">
if (ie||dom){
document.writeln('<div id="main2" style="position:relative;width:'+scrollerwidth+';height:'+scrollerheight+';overflow:hidden;background-color:'+scrollerbgcolor+'">')
document.writeln('<div style="position:absolute;width:'+scrollerwidth+';height:'+scrollerheight+';clip:rect(0 '+scrollerwidth+' '+scrollerheight+' 0);left:0px;top:0px">')
document.writeln('<div id="first2" style="position:absolute;width:'+scrollerwidth+';left:1px;top:0px;">')
document.write(slideimages[0])
document.writeln('</div>')
document.writeln('<div id="second2" style="position:absolute;width:'+scrollerwidth+';left:0px;top:0px">')
document.write(slideimages[1])
document.writeln('</div>')
document.writeln('</div>')
document.writeln('</div>')
}
</script>
</fieldset>
</tr></td></table>
<table width="500" border="1" align="center" cellpadding="1" cellspacing="1">
<tr>
<td></td>
</tr>
</table>
</body>
</html>
⑦ 手机怎么制作连续图片
1.手机支持图片编辑器功能:打开照相机-点开某张图片-菜单键-编辑-图片编辑器-然后可以编辑图片。
2.下载第三方美图软件编辑,如美图秀秀、网络魔图等软件。
⑧ 怎么让一张PPT里几张图片连续自动播放
1、打开要设置进行自动连续播放的PPT,选择切换——计时——勾选自动换片时间,并设置换片的具体时间值(此处设置2秒)。
6、这样就可以把做好的自动放映PPT放到宣传电脑中,即完成让一张PPT里几张图片连续自动播放。
⑨ ppt的图片连续通过品目怎么设置
首先将图片编号,即将文件名改成顺序号(其实不改也可以,到时还可调整顺序)。
插入-图片-新建相册-插入图片来自(文件/磁盘),找到存入图片的文件夹,选中需要插入的图片,插入。此时“相册中的图片”出现需要插入图片文件的列表,如果顺序不对,在这里还可以调整。
这里插入的图片实际是新建了一个PPT文档,将其取名保存,然后关闭这个新文档。
插入-幻灯片(从文件),找到刚才那个新文档,插入即可。
⑩ 如何将几张图片弄成一个连续的段片
用ps打开弄成不同的图层,再从图层导入动画,改一下时间帧,预览一下,满意了导出为gif格式的图片
或者
用UGA打开,再把图片挨个拖入,然后设置时间帧,预览一下,满意了导入为gif格式的动态图
个人倾向UGA,但ps可以处理一下图像,让图像更顺眼一些,看你的需要