JavaScript中图像处理技巧

你知道JavaScript中如何对图像进行操作吗,这里和大家简单分享一下,希望通过本文的详细介绍你对JavaScript中图像的操作有明确的认识。

JavaScript图像

读取图像属性

 
 
 
  1. 1 
  2. 2
  3. onClick=”window.alert(document.myImage.width)”> 
  4. Width 

动态加载图像

 
 
 
  1. 1 
  2. 2myImage=newImage;  
  3. 3myImage.src=“Tellers1.jpg”;  

简单的图像替换

 
 
 
  1. 1 
  2. 2rollImage=newImage;  
  3. 3rollImage.src=“rollImage1.jpg”;  
  4. 4defaultImage=newImage;  
  5. 5defaultImage.src=“image1.jpg”;  
  6. 7
  7. ”onMouseOver=”document.myImage.src=rollImage.src;”  
  8. 8onMouseOut=”document.myImage.src=defaultImage.src;”> 
  9. 9
  10. ”name=”myImage”width=100height=100border=0> 

随机显示图像 

 
 
 
  1. 1 
  2. 2varimageList=newArray;3:imageList[0]=“image1.jpg”;  
  3. 3imageList[1]=“image2.jpg”;  
  4. 4imageList[2]=“image3.jpg”;  
  5. 5imageList[3]=“image4.jpg”;  
  6. 6varimageChoice=Math.floor(Math.random()*imageList.length);  
  7. 7document.write(‘’);  

函数实现的图像替换 

 
 
 
  1. 1 
  2. 2varsource=0;  
  3. 3varreplacement=1;  
  4. 4functioncreateRollOver(originalImage,replacementImage){   
  5. 5varimageArray=newArray;  
  6. 6imageArray[source]=newImage;  
  7. 7imageArray[source].src=originalImage;  
  8. 8imageArray[replacement]=newImage;  
  9. 9imageArray[replacement].src=replacementImage;  
  10. 10returnimageArray;  
  11. 11}  
  12. 12varrollImage1=createRollOver(“image1.jpg”,”rollImage1.jpg”);  
  13. 13 
  14. 14
  15. onMouseOver=”document.myImage1.src=rollImage1[replacement].src;”  
  16. 15onMouseOut=”document.myImage1.src=rollImage1[source].src;”> 
  17. 16
  18. ”width=100name=”myImage1”border=0> 
  19. 17 

创建幻灯片 

 
 
 
  1. 1 
  2. 2varimageList=newArray;  
  3. 3imageList[0]=newImage;  
  4. 4imageList[0].src=“image1.jpg”;  
  5. 5imageList[1]=newImage;  
  6. 6imageList[1].src=“image2.jpg”;  
  7. 7imageList[2]=newImage;  
  8. 8imageList[2].src=“image3.jpg”;  
  9. 9imageList[3]=newImage;  
  10. 10imageList[3].src=“image4.jpg”;  
  11. 11functionslideShow(imageNumber){   
  12. 12document.slideShow.src=imageList[imageNumber].src;  
  13. 13imageNumber+=1;  
  14. 14if(imageNumber
  15. 15window.setTimeout(“slideShow(“+imageNumber+“)”,3000);  
  16. 16}  
  17. 17}  
  18. 18 
  19. 19 
  20. 20 
  21. 21 

随机广告图片 

 
 
 
  1. 1 
  2. 2varimageList=newArray;  
  3. 3imageList[0]=“image1.jpg”;  
  4. 4imageList[1]=“image2.jpg”;  
  5. 5imageList[2]=“image3.jpg”;  
  6. 6imageList[3]=“image4.jpg”;  
  7. 7varurlList=newArray;  
  8. 8urlList[0]=“http://some.host/”;  
  9. 9urlList[1]=“http://another.host/”;  
  10. 10urlList[2]=“http://somewhere.else/”;  
  11. 11urlList[3]=“http://right.here/”;  
  12. 12varimageChoice=Math.floor(Math.random()*imageList.length);  
  13. 13document.write(‘ 
  14. ’);  
  15. 14 

当前标题:JavaScript中图像处理技巧
地址分享:http://www.shufengxianlan.com/qtweb/news17/352217.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联