首页 >

IE浏览器PNG图片透明效果代码【javascript】

web前端|js教程IE浏览器PNG图片透明效果代码【javascript】
透明,PNG,IE浏览器
web前端-js教程
首先看我们的标签代码:
我们将利用IE中特有的特效来满足这个要求,这就是AlphaImageLoader Filter (http://msdn.microsoft.com/library/default.asp?url=/workshop/author/filter/reference/filters/alphaimageloader.asp)
夺宝赌博源码,ubuntu查看所有终端,tomcat不能使用多线程,网络爬虫php代码,阿里云怎么部署项目php,毕业seo摘要lzw
如何做?
将下面代码保存为correctPNG.js:
电脑报修系统源码,vscode 定制版,如何导出ubuntu驱动,tomcat 私钥 证书,映射到 sqlite,html5 loading插件,微信前端主流框架,游戏排名爬虫,php 多对多,深圳seo 招聘,不用下载播放器的电影网站源码,免费网页特效代码,带表情包的留言模板,wp 获取当前页面的id,社区管理系统模板下载,装修网站程序源码lzw
 
function correctPNG()
{
for(var i=0; i<document.images.length; i++)
{
var img = document.images[i]
var imgName = img.src.toUpperCase()
if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
{
var imgID = (img.id) ? "id='" + img.id + "' " : ""
var imgClass = (img.className) ? "class='" + img.className + "' " : ""
var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "
var imgStyle = "display:inline-block;" + img.style.cssText
if (img.align == "left") imgStyle = "float:left;" + imgStyle
if (img.align == "right") imgStyle = "float:right;" + imgStyle
if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle
var strNewHTML = "+ " style=\"" + "width:" + img.width + "px; margin:6px; height:" + img.height + "px;" + imgStyle + ";"
+ "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
+ "(src=\'" + img.src + "\', sizingMethod='scale');\">"
img.outerHTML = strNewHTML
i = i-1
}
}
}
window.attachEvent("onload", correctPNG);

然后在你需要透明的网页中的….区加入:

html 网页源码,ubuntu查看eps文件,爬虫软件python优点,niginx php,日照seo技术lzw
在区加入多个与类似的PNG图片,试试看?
另一种方法:

alpha image 

.jpgholder{
width:100px;
height:100px;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://www.liuzhongwei.com/attachments/200510/03_124401_ie.jpg' alt="IE浏览器PNG图片透明效果代码【javascript】" title="IE浏览器PNG图片透明效果代码【javascript】");
}
.jpgalpha{
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
background:url(http://www.liuzhongwei.com/attachments/200510/03_124401_ie.jpg) no-repeat;
width:100px;
height:100px;
}


透明
不透明
IE浏览器PNG图片透明效果代码【javascript】

IE浏览器PNG图片透明效果代码【javascript】
  • 让ie浏览器成为支持html5的浏览器的操作(使用html5shiv)技巧
  • 让ie浏览器成为支持html5的浏览器的操作(使用html5shiv)技巧 | 让ie浏览器成为支持html5的浏览器的操作(使用html5shiv)技巧 ...

    IE浏览器PNG图片透明效果代码【javascript】
  • IE浏览器HTML Hack标签总结【HTML】
  • IE浏览器HTML Hack标签总结【HTML】 | IE浏览器HTML Hack标签总结【HTML】 ...

    IE浏览器PNG图片透明效果代码【javascript】
  • Get中文乱码IE浏览器Get中文乱码解决方案【jquery】
  • Get中文乱码IE浏览器Get中文乱码解决方案【jquery】 | Get中文乱码IE浏览器Get中文乱码解决方案【jquery】 ...