图象特效

关注公众号 jb51net

关闭
首页 > 网络编程 > JavaScript > 网页特效 > 图象特效 >

超级简单的图片防盗(HTML),好用

作者:

超级简单的图片防盗(HTML),好用
<style type="text/css">
* html img {
        filter:expression(
                this.不能去掉 ? "" :
                (
                        (!this.complete) ? "" :
                        this.runtimeStyle.filter = ("progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.src + "')") +
                        String(this.不能去掉 = true).substr(0, 0) +
                        (this.src = "http://www.sxpcrazy.com/blog/clear.gif").substr(0, 0)
                )
        );
}
</style>
<img src="https://www.jb51.net/logos.gif">
阅读全文