-
怎么把图片生成动画?5
我看见许多网站的首页 都有最新上传的图片制作成的动画 图片来回切换 不知道这图片是怎么生成的 谁能给小弟解答? 谢谢
问题补充:
剑 事 可不可以说详细点2008年8月09日 09:39
4个答案 按时间排序 按投票排序
-
采纳的答案
这种代码网上有好多,一般有两种,一种是采用js实现图片切换并带有切换时的效果,另外一种有采用flash做的.
又一款FLASH图片切换效果代码<HTML> <HEAD> <TITLE>又一款FLASH图片切换效果代码 www.qpsh.com</TITLE> <center> <script> if(typeof sas=="undefined")var sas=new Object(); if(typeof sas.ued=="undefined")sas.ued=new Object(); if(typeof sas.ued.util=="undefined")sas.ued.util=new Object(); if(typeof sas.ued.FlashObjectUtil=="undefined")sas.ued.FlashObjectUtil=new Object(); sas.ued.FlashObject=function(swf,id,w,h,ver,c,useExpressInstall,quality,xiRedirectUrl,redirectUrl,detectKey) { if(!document.createElement||!document.getElementById)return;this.DETECT_KEY=detectKey?detectKey:'detectflash'; this.skipDetect=sas.ued.util.getRequestParameter(this.DETECT_KEY); this.params=new Object();this.variables=new Object(); this.attributes=new Array();this.useExpressInstall=useExpressInstall; if(swf)this.setAttribute('swf',swf); if(id)this.setAttribute('id',id); //by www.qpsh.com if(w)this.setAttribute('width',w); if(h)this.setAttribute('height',h); if(ver)this.setAttribute('version',new sas.ued.PlayerVersion(ver.toString().split("."))); this.installedVer=sas.ued.FlashObjectUtil.getPlayerVersion(this.getAttribute('version'),useExpressInstall); if(c)this.addParam('bgcolor',c); var q=quality?quality:'high'; this.addParam('quality',q); var xir=(xiRedirectUrl)?xiRedirectUrl:window.location;this.setAttribute('xiRedirectUrl',xir); this.setAttribute('redirectUrl',''); if(redirectUrl)this.setAttribute('redirectUrl',redirectUrl)}; sas.ued.FlashObject.prototype={setAttribute:function(name,value){this.attributes[name]=value},getAttribute:function(name){return this.attributes[name]},addParam:function(name,value){this.params[name]=value},getParams:function(){return this.params},addVariable:function(name,value){this.variables[name]=value},getVariable:function(name){return this.variables[name]},getVariables:function(){return this.variables},createParamTag:function(n,v){var p=document.createElement('param');p.setAttribute('name',n);p.setAttribute('value',v);return p},getVariablePairs:function(){var variablePairs=new Array();var key;var variables=this.getVariables();for(key in variables){variablePairs.push(key+"="+variables[key])}return variablePairs},getFlashHTML:function(){var flashNode="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall"))this.addVariable("MMplayerType","PlugIn");flashNode='<embed type="application/x-shockwave-flash" src="'+this.getAttribute('swf')+'" width="'+this.getAttribute('width')+'" height="'+this.getAttribute('height')+'"';flashNode+=' id="'+this.getAttribute('id')+'" name="'+this.getAttribute('id')+'" ';var params=this.getParams();for(var key in params){flashNode+=[key]+'="'+params[key]+'" '}var pairs=this.getVariablePairs().join("&");if(pairs.length>0){flashNode+='flashvars="'+pairs+'"'}flashNode+='/>'}else{if(this.getAttribute("doExpressInstall"))this.addVariable("MMplayerType","ActiveX");flashNode='<object id="'+this.getAttribute('id')+'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+this.getAttribute('width')+'" height="'+this.getAttribute('height')+'">';flashNode+='<param name="movie" value="'+this.getAttribute('swf')+'" />';var params=this.getParams();for(var key in params){flashNode+='<param name="'+key+'" value="'+params[key]+'" />'}var pairs=this.getVariablePairs().join("&");if(pairs.length>0){flashNode+='<param name="flashvars" value="'+pairs+'" />'}flashNode+="</object>"}return flashNode},write:function(elementId){if(this.useExpressInstall){var expressInstallReqVer=new sas.ued.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(expressInstallReqVer)&&!this.installedVer.versionIsValid(this.getAttribute('version'))){this.setAttribute('doExpressInstall',true);this.addVariable("MMredirectURL",escape(this.getAttribute('xiRedirectUrl')));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title)}}else{this.setAttribute('doExpressInstall',false)}if(this.skipDetect||this.getAttribute('doExpressInstall')||this.installedVer.versionIsValid(this.getAttribute('version'))){var n=(typeof elementId=='string')?document.getElementById(elementId):elementId;n.innerHTML=this.getFlashHTML()}else{if(this.getAttribute('redirectUrl')!=""){document.location.replace(this.getAttribute('redirectUrl'))}}}};sas.ued.FlashObjectUtil.getPlayerVersion=function(reqVer,xiInstall){var PlayerVersion=new sas.ued.PlayerVersion(0,0,0);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){PlayerVersion=new sas.ued.PlayerVersion(x.description.replace(/([a-z]|[A-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."))}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");for(var i=3;axo!=null;i++){axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+i);PlayerVersion=new sas.ued.PlayerVersion([i,0,0])}}catch(e){}if(reqVer&&PlayerVersion.major>reqVer.major)return PlayerVersion;if(!reqVer||((reqVer.minor!=0||reqVer.rev!=0)&&PlayerVersion.major==reqVer.major)||PlayerVersion.major!=6||xiInstall){try{PlayerVersion=new sas.ued.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","))}catch(e){}}}return PlayerVersion};sas.ued.PlayerVersion=function(arrVersion){this.major=parseInt(arrVersion[0])||0;this.minor=parseInt(arrVersion[1])||0;this.rev=parseInt(arrVersion[2])||0};sas.ued.PlayerVersion.prototype.versionIsValid=function(fv){if(this.major<fv.major)return false;if(this.major>fv.major)return true;if(this.minor<fv.minor)return false;if(this.minor>fv.minor)return true;if(this.rev<fv.rev)return false;return true};sas.ued.util={getRequestParameter:function(param){var q=document.location.search||document.location.href.hash;if(q){var startIndex=q.indexOf(param+"=");var endIndex=(q.indexOf("&",startIndex)>-1)?q.indexOf("&",startIndex):q.length;if(q.length>1&&startIndex>-1){return q.substring(q.indexOf("=",startIndex)+1,endIndex)}}return""}};if(Array.prototype.push==null){Array.prototype.push=function(item){this[this.length]=item;return this.length}}var getQueryParamValue=sas.ued.util.getRequestParameter;var sohuFlash=sas.ued.FlashObject; function Cookie(document,name,hours,path,domain,secure){this.$document=document;this.$name=name;this.$expiration=hours?new Date((new Date()).getTime()+hours*3600000):null;this.$path=path?path:null;this.$domain=domain?domain:null;this.$secure=secure;};Cookie.prototype.store=function (){var cookieval="";for(var prop in this){if((prop.charAt(0)=='$')||((typeof this[prop])=='function')) continue;if(cookieval!="") cookieval+='&';cookieval+=prop+':'+escape(this[prop]);}var cookie=this.$name+'='+cookieval;if(this.$expiration)cookie+='; expires='+this.$expiration.toGMTString();if(this.$path) cookie+='; path='+this.$path;if(this.$domain) cookie+='; domain='+this.$domain;if(this.$secure) cookie+='; secure';this.$document.cookie=cookie;};Cookie.prototype.load=function(){var allcookies=this.$document.cookie;if(allcookies=="") return false;var start=allcookies.indexOf(this.$name+'=');if(start==-1) return false;start+=this.$name.length+1;var end=allcookies.indexOf(';',start);if(end==-1) end=allcookies.length;var cookieval=allcookies.substring(start,end);var a=cookieval.split('&');for(var i=0; i<a.length; i++) a[i]=a[i].split(':');for(var i=0; i<a.length; i++) this[a[i][0]]=unescape(a[i][1]);return true;};Cookie.prototype.remove = function(){var cookie;cookie = this.$name + '=';if (this.$path) cookie += '; path=' + this.$path;if (this.$domain) cookie += '; domain=' + this.$domain;cookie += '; expires=Fri, 02-Jan-1970 00:00:00 GMT';this.$document.cookie = cookie;}; </script> <BODY bgcolor="#F7F7F7"> <DIV class=focusFlash> <DIV id=sasFlashFocus27></DIV> <SCRIPT type=text/javascript> //<![CDATA[ txt="<a image='http://www.qpsh.com/icon/443_209_1.jpg' info='网页特效是用程序代码在网页中实现特殊效果或者特殊功能的一种技术' url='http://www.qpsh.com' /><a image='http://www.qpsh.com/icon/443_209_2.jpg' info='它为网页活跃了气氛,增加了网站的亲和力。' url='http://www.qpsh.com' /><a image='http://www.qpsh.com/icon/443_209_3.jpg' info='一般在你想添加特效的地方直接粘贴特效代码即可' url='http://www.qpsh.com/' /><a image='http://www.qpsh.com/icon/443_209_4.jpg' info='在本站下载的特效代码,都有详细说明,按说明使用即可。' url='http://www.qpsh.com' />" var sohuFlash2 = new sohuFlash("http://www.qpsh.com/icon/qpsh_com_tp2.swf", "27", 520, 205, "7"); sohuFlash2.addParam("quality", "high"); sohuFlash2.addParam("wmode", "opaque"); sohuFlash2.addVariable("txt",txt); sohuFlash2.write("sasFlashFocus27"); //]]> </SCRIPT> </DIV> </BODY> </HTML>
地址为:http://www.qpsh.com/javascript/showpage2518.htm
这一个效果也十分不错http://www.qpsh.com/javascript/showpage2511.htm
我估计这个应该是你最想要的,它的效果和csdn首页的有些相像,不过是用flash实现 的
http://www.qpsh.com/javascript/showpage2556.htm
我个人认为使用flash实现的比用js实现的要好一些.
最好,不要认为这种flash效果的图片展示不能实现动态的哦,它是可以实现动态的,只要参数设置好.
2008年8月09日 11:40
相关推荐
图片生成动画效果可以创建一个卡通动画效果的图片 当应用卡通效果就有可能相对容易创造看似源自绘图/动画图像。 用到的技术包括: GDI , WPF, .NET Framework 4, .System.Drawing.Drawing2D, System.Windows....
在C#编程环境中,生成GIF动画图片是一项常见的任务,特别是在开发桌面应用或者网页时,可能需要动态展示一些效果。GIF格式支持多帧动画,是实现这种效果的理想选择。以下是一个详细的步骤来阐述如何使用C#来创建GIF...
本资源"Android andengine中直接加载多张小图片合成一张大图片生成动画精灵源码.zip"是针对AndEngine中如何通过合并多张小图片来制作动画精灵的一个实例代码包。 在AndEngine中,动画精灵(Sprite)是一种可移动的...
然后,为了生成GIF动画,我们需要将这些图片按照特定顺序组织成一个序列。`cell`数组是储存这些图片的好选择,因为它们可以包含不同类型的变量。可以创建一个空的cell数组,然后逐一把图片添加进去: ```matlab ...
这个名为"ComfyUI+AnimateDiff+ControlNet的Tile生成动画.zip"的压缩包文件,显然涉及到几个关键概念,包括ComfyUI、AnimateDiff和ControlNet,以及Tile生成动画。我们将逐一探讨这些概念。 首先,ComfyUI可能是指...
这个毕业设计项目的核心是利用AndEngine的技术实现动态精灵(Sprite)的动画效果,通过将多张小图片组合成一张大图片,然后在运行时分割和动态加载,以达到流畅的动画效果。 一、AndEngine简介 AndEngine是一款开源...
andengine中直接加载多张小图片合成一张大图片生成动画精灵
代码-behind则更灵活,适合动态生成和控制动画。 总结来说,WPF提供了一系列强大的工具来实现图片的动画效果切换。通过巧妙地运用Image控件、Storyboard、动画类以及各种变换,开发者可以创造出各种各样的视觉效果...
canvas根据图片生成粒子动画
9. **导入图片序列**:除了录制,用户还可以导入一系列静态图片,将其组合成一个动画,这种方式适用于已经准备好的图片素材。 10. **时间线编辑**:高级的GIF生成器可能提供时间线编辑功能,让用户对每个帧进行精确...
在MATLAB中生成动画并将其转化为GIF图片是一项常见的任务,尤其对于数据可视化和科学研究非常有用。MATLAB虽然默认支持创建动画,但直接生成GIF格式的图片却并不直观。这个压缩包提供了一个小程序,旨在解决MATLAB不...
至此,我们就完成了一个简单的图片生成视频的MATLAB程序。这个过程可以扩展到更复杂的任务,比如添加过渡效果、调整亮度和对比度,甚至进行基本的图像分析。MATLAB的强大之处在于其丰富的函数库和灵活的编程环境,...
安卓开发-andengine中直接加载多张小图片合成一张大图片生成动画精灵
本压缩包中的内容主要涉及如何使用AndEngine来直接加载多张小图片,并将它们合成一张大图片,进而生成动画精灵。下面我们将详细探讨这一技术。 首先,我们需要理解AndEngine中的精灵(Sprite)概念。精灵是2D游戏中...
本项目为java实现的视频生成的demo项目,实现了通过多张图片的旋转、缩放等变换来生成视频。本项目使用了第三方jar包,jar包在libs目录下;图片在images下,运行MainApp的main方法即可生成视频,视频输出在目录...
在IT领域,图片生成GIF动画是一项常见的任务,特别是在网页设计、移动应用开发以及数字艺术创作中。GIF(Graphics Interchange Format)是一种支持有限色阶和简单动画的图像格式,因其体积小、兼容性好而广受欢迎。...
《IGamesTools批量生成帧动画详解》 在游戏开发中,帧动画是一种常见的表现动态效果的方式,它通过连续播放一系列静态图像来模拟连续的动作。在Unity引擎中,手动创建和管理大量的帧动画可能会非常繁琐,这时,...
Unity 2D图片生成简单3D模型UCLA Mesh Creator是一款工具,它允许开发者将2D图像转换为3D模型,从而在Unity引擎中创建出具有立体感的效果。这个过程是通过特殊的算法分析2D图像的像素信息,然后构建出相应的3D网格...
PNG序列帧生成WebP动画工具是一种实用的软件工具,它能够帮助用户将一系列连续的PNG图像文件合并成一个WebP格式的动画。WebP是由谷歌开发的一种高效、现代的图像和动画格式,它在保持画质的同时,可以显著地减小文件...