css 怎么控制弹出层位置,跪求
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 怎么控制弹出层位置,跪求相关的知识,希望对你有一定的参考价值。
我现在做的是网页中有两排小图,就是点击一下小图,出现新层,显示的图片中心点怎么位于小图的中间,有人会吗??请指教 我用的是css js只实现了弹出功能
简单写了一个 大概就是用了个相对定位 通过设置top和left的值来确定弹出框位于图片上边和左边的距离!具体的值你要以调下top和left.bottomdivposition:relative;background:#FCC;width:200px;height:200px;
.popposition:absolute;width:150px;height:100px;top:50px;left:100px;border:1px solid #000;background:#CCC
</style>
<div class="bottomdiv">
<div class="pop">弹出层内容</div>
<img src="http://www.baidu.com/search/zhidao/jctuijian/1217ms.jpg" width="200" height="200" />
</div> 参考技术A
这个意思吗
html:
<div class="d2">
<img src="img/t1.png" alt="" class="img1" />
<div class="d1"></div>
</div>
css:
.d1
width:30px;
height:30px;
background: #000;
border-radius:50%;
position: absolute;
top:50%;
left:50%;
margin-left:-15px;
margin-top:-15px;
display: none;
.d2
width:300px;
height:150px;
position: relative;
js:
$(".img1").click(function()
$(".d1").css("display","block");
)
参考技术B 可以采用css中的position来实现决定定位。代码实例如下:
<html><head><style type="text/css">p.oneposition:fixed;left:5px;top:5px;p.twoposition:fixed;top:30px;right:5px;</style></head><body><p class="one">一些文本。</p><p class="two">更多的文本。</p></body></html>
此实例是相对于浏览器边框进行的定位。
2、补充相关知识
bsolute
生成绝对定位的元素,相对于 static 定位以外的第一个父元素进行定位。
元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。
fixed
生成绝对定位的元素,相对于浏览器窗口进行定位。
元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。
relative
生成相对定位的元素,相对于其正常位置进行定位。
因此,"left:20" 会向元素的 LEFT 位置添加 20 像素。
static 默认值。没有定位,元素出现在正常的流中(忽略 top, bottom, left, right 或者 z-index 声明)。
inherit 规定应该从父元素继承 position 属性的值。 参考技术C 我建议你还是截图一下。
大概意思我给你说下这个用法。
首先你需要获取你要点击的图的位置。比如他是 class="img1",并且第二个class=“img2”是display:none
js或jq当中获取他
var Img1=document.getElementByClassName("img1");
var Img2=document.getElementByClassName("img2");
Img1.onclick=function()
Img2.style.display="block"
$(".img1").click(function()
$(".img2").show();
);
html里点击按钮弹出框带选项怎么实现?
弹出框这么个样式,差不多,要怎么实现啊,跪求代码!!!
首先打开计算机,单击开始,然后在弹出的选项栏内找到“运行”选项并单击。 参考技术A 说白了就是弹出层里面自定义表单嘛,看看layer吧! 参考技术B使用layer这个组件百度一下就可以实现这个功能
/*
参数解释:
title 标题
url 请求的url
id 需要操作的数据id
w 弹出层宽度(缺省调默认值)
h 弹出层高度(缺省调默认值)
*/
function x_admin_show(title,url,w,h)
if (title == null || title == '')
title=false;
;
if (url == null || url == '')
url="404.html";
;
if (w == null || w == '')
w=($(window).width()*0.9);
;
if (h == null || h == '')
h=($(window).height() - 50);
;
layer.open(
type: 2,
area: [w+'px', h +'px'],
fix: false, //不固定
maxmin: true,
shadeClose: true,
shade:0.4,
title: title,
content: url
);
以上是关于css 怎么控制弹出层位置,跪求的主要内容,如果未能解决你的问题,请参考以下文章