zoukankan
html css js c++ java
用滤镜写透明的层
<%
@ Page Language
=
"
C#
"
AutoEventWireup
=
"
true
"
CodeFile
=
"
Default.aspx.cs
"
Inherits
=
"
_Default
"
%>
<
html
>
<
head
runat
="server"
>
<
title
>
无标题页
</
title
>
<
style
>
.systeminfo
{
}
{
filter
:
alpha(opacity=10)
;
}
</
style
>
</
head
>
<
body
>
<
form
id
="form1"
runat
="server"
>
<
div
>
<
table
style
=" 799px"
>
<
tr
>
<
td
style
=" 100px"
>
1111111111111111111
</
td
>
<
td
style
=" 100px"
>
11111111
</
td
>
<
td
style
=" 100px"
>
1111111111111111
</
td
>
</
tr
>
<
tr
>
<
td
style
=" 100px"
>
透明的层,有点酷!
</
td
>
<
td
style
=" 100px"
>
fdsafsdfsd
</
td
>
<
td
style
=" 100px"
>
</
td
>
</
tr
>
<
tr
>
<
td
style
=" 100px"
>
</
td
>
<
td
style
=" 100px"
>
</
td
>
<
td
style
=" 100px"
>
</
td
>
</
tr
>
</
table
>
</
div
>
<
div
class
="systeminfo"
style
="Z-INDEX: 1;position: absolute; 100%; height: 100%; right: -49px; top: 2%; background-repeat: repeat; background-attachment: scroll; layer-background-color: #e0e0e0; border: 1px none #000000; background-color: #ffffff;"
></
div
>
</
form
>
</
body
>
</
html
>
查看全文
相关阅读:
Python3常用学习网站总结(随时更新)
Python自学笔记-生成器(来自廖雪峰的官网Python3)
Python自学笔记-lambda函数(来自廖雪峰的官网Python3)
Python自学笔记-sorted()函数(来自廖雪峰的官网Python3)
Python自学笔记-filter()函数(来自廖雪峰的官网Python3)
Python自学笔记-map和reduce函数(来自廖雪峰的官网Python3)
Python自学笔记-列表生成式(来自廖雪峰的官网Python3)
Python自学笔记-关于切片(来自廖雪峰的官网Python3)
Python自学笔记-递归函数(来自廖雪峰的官网Python3)
Jmeter测试JDBC
原文地址:https://www.cnblogs.com/anson/p/407333.html
最新文章
poj 1056 IMMEDIATE DECODABILITY(KMP)
poj 1664 put apples(dfs)
1298 The Hardest Problem Ever
poj 1251 Jungle Roads(最小生成树)
poj 2833 The Average(堆)
poj 1442 Black Box(优先队列&Treap)
poj 3461 Oulipo(KMP)
算法导论 12.1-4
算法导论 12.1-3
浅谈并发与并行(一)
热门文章
JavaScript 运行机制详解:再谈Event Loop
用ildasm/ilasm修改IL代码
初识Ildasm.exe——IL反编译的实用工具
什么是程序集
解决方案、项目、程序集、命名空间
让“链式调用(方法链)”更加自然一点
关于URL编码
JavaScript及C# URI编码详解
ASP.NET页面与IIS底层交互和工作原理详解
Python实战之用类的静态方法实现登录验证
Copyright © 2011-2022 走看看