如何显示Oracle网站的这个效果呢?
http://www.oracle.com/index.html
页面的右上方有个按钮"Oracle WebSites",
点击之后, 主页就被 一个半透明的层遮住了... (请教, 如何做一个半透明的层? 用什么属性? IE, FF都兼容的)
loading之后 (loading我想是Ajax调用, loading画面是个图片), Ajax调用结束后, 显示子窗口...
求各位大大, 如何做一个半透明的层?
先定义一个CSS样式:
<style type="text/css">
<!--
.halfalpha { background-color: #000000; filter: Alpha(Opacity=50)}
-->
</style>
然后应用在层标签里:
<div class="halfalpha">
这种效果可以使用一些UI库很简单就能制作,类似桌面程序的模式窗口,可以用一个div半透明化覆盖整个页面,然后显示一个内层,通过内层按纽控制该div的显示/隐藏,至于该div中的内容,你可以自己定义
使用jquery
$(' <button>show modal panel </button>')
.appendTo('body')
.click(function(){
if($('#modal_panel').length==0){
$(' <div id="modal_panel"> </div>').appendTo('body')
.css({
'position':'absolute',
'width':'100%',
'height':'100%',
'top':0,
'left':0,
'opacity':0.5 ,
'backgr
相关问答:
本来要写个update语句
update table_a A
set A.flag=1
where A.id in (select B.id from table_b B)
结果误写成
update table_a A
set A.flag=1
where ......
安装了Oracle 10g,默认安装了orcl数据库,这个数据库能不能删除啊,还有我如果新建了其他数据库,怎么知道在web中登陆不同数据库的地址啊?
1
可以删除
2
在WEB地址栏中输入地址的时候指定新创建的数据库的IP ......
private static final String URL = "jdbc:oracle:thin:@localhost:1521:orcl";
private static final String USERNAME = "sys";
private static final String PASSWORD = "s ......
两个文件1.PC,1.inc
1.PC有操作oracle数据库的 ,1.inc也有操作oracle数据库
在其他数据中如informix 中$include 1.inc就可以使用了
在ORACLE数据库重 $include 1.inc不可用 EXEC SQL include 1.inc也不可 ......
假设table01 中有 以下资料
emp_no emp_name
------- ------------
0001 TOM
0002 JOHN
0003 MARY
常用电话
而我们要得到以下的OUTPUT (或是各种其他的output)
0001,TOM
0002,JOHN
......