用Dreamweaver 8制作网页里点击相册的连接怎么才可以不弹出网页,在主页里弹出窗口
- 提问者网友:你独家记忆
- 2021-05-05 01:36
- 五星知识达人网友:罪歌
- 2021-05-05 02:08
- 1楼网友:洒脱疯子
- 2021-05-05 08:33
可以 创建模板啊
- 2楼网友:旧脸谱
- 2021-05-05 07:32
- 3楼网友:轻熟杀无赦
- 2021-05-05 06:22
- 4楼网友:夜余生
- 2021-05-05 05:04
你要是想在新窗口打开的话 就在目标设置里选择 “_blank“ 就可以啦
- 5楼网友:十年萤火照君眠
- 2021-05-05 03:32
- 6楼网友:渡鹤影
- 2021-05-05 03:16
呵 那样要用JS效果 用DIV设计出来的 你可以加我QQ给你做下
下面给弹出效果
<html> <head> <title>LIGHTBOX EXAMPLE</title> <style> .black_overlay{ display: none; position: absolute; top: 0%; left: 0%; width: 100%; height: 100%; background-color: black; z-index:1001; -moz-opacity: 0.8; opacity:.80; filter: alpha(opacity=80); } .white_content { display: none; position: absolute; top: 25%; left: 25%; width: 50%; height: 50%; padding: 16px; border: 16px solid orange; background-color: white; z-index:1002; overflow: auto; } </style> </head> <body> <p>可以根据自己要求修改css样式<a href="javascript:void(0)" onclick="document.getElementById('light').style.display='block';document.getElementById('fade').style.display='block'">点击这里打开窗口</a></p> <div id="light" class="white_content"> This is the lightbox content. <a href="javascript:void(0)" onclick="document.getElementById('light').style.display='none';document.getElementById('fade').style.display='none'"> Close</a></div> <div id="fade" class="black_overlay"> </div> </body> </html></font>