点击按钮弹出小窗口_小窗口可拖拽

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>right</title>
<style>
*{ margin:0; padding:0;}
.place{background:#f0f9fd center repeat; height:40px;}
.place span{ font-weight:bold; font-family:‘微软雅黑‘;  font-size:12px; line-height:40px; float:left; padding-left:10px; padding-right:10px;}
.place li{float:left; list-style:none; font-size:12px; font-family:‘微软雅黑‘;}
.place a { line-height:40px; text-decoration:none; color:#000;}
.place a:hover{color:#C60;}
.button_wrap button{ float:left; width:70PX; height:35px; padding:5px; margin-top:10px;}
/*弹出框*/
.tip{width:485px; height:260px; position:absolute;top:10%; left:30%;background:#fcfdfd;box-shadow:1px 8px 10px 1px #9b9b9b;border-radius:1px;behavior:url(js/pie.htc); display:block; z-index:111111;}
.tip_title{ background:#09F center repeat-x; height:30px;}
.tip_title span { color:#FFF; line-height:30px; padding-left:15px; font-size:12px; float:left;}
.tip_title a { float:right; width:20px; height:20px; color:#FFF;  display:block; cursor:pointer;}
.tip_title a:hover{ color:#000; cursor:pointer;}
.tip_info{width:308px;height:85px; margin:25px auto;}
.tip_info span img{ float:left;}
.tip_info p { font-size:12px; color:#000; font-weight:bold; line-height:26px; padding-top:15px;}
.tip_button{ width:150px; margin:auto; }
.tip_button button{ width:50px; height:30px; margin-left:10px; cursor:pointer;}
</style>
<!--juqery.js需要自己下载哦-->
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $(".add").click(function(){
  $(".tip").fadeIn(200);
  });
 
  $(".tip_title a").click(function(){
  $(".tip").fadeOut(200);
});

$(".sure").click(function(){
  $(".tip").fadeOut(100);
});

$(".cancel").click(function(){
  $(".tip").fadeOut(100);
});

});
</script>

<!--插件需要自己下载哦-->
<script type="text/javascript" src="js/jquery.easydrag.handler.beta2.js"></script>
<script>
$(document).ready(function(){

$(".tip").easydrag();

});
</script>
</head>
<body>
  <div class="place">
   <span>位置:</span>
   <ul>
   <li><a href="#">首页></a></li>
   <li><a href="#">数据表></a></li>
   <li><a href="#">基本内容></a></li>
   </ul>
  </div>
   
  <div class="right_info">
      <div class="button_wrap">
      <button type="text" value="添加" name="add" class="add">添加</button>
      <button type="text" value="修改" name="xg">修改</button>
      <button type="text" value="删除" name="delete">删除</button>
      <button type="text" value="统计" name="tj">统计</button>
      </div>
    
   <!--弹出框-->
     <div class="tip" style=" display:none;">
      <div class="tip_title"><span>提示信息</span><a>x</a></div>
        <div class="tip_info">
          <span><img src="images/ticon.png" width="95" height="95" /></span>
          <p>是否确认对信息的修改 ?<br/>
          如果是请点击确定按钮 ,否则请点取消。</p>
         </div>
           <div class="tip_button">
                <button type="text" value="确定" name="sure" class="sure">确定</button>
                <button type="text" value="取消" name="cancel" class="cancel">取消</button>
           </div>
      </div>
      
   </div>
   
  </div>
</body>
</html>

时间: 2024-11-10 01:05:15

点击按钮弹出小窗口_小窗口可拖拽的相关文章

js实现点击按钮弹出上传文件的窗口

转自:https://www.jb51.net/article/100916.htm 1.详细描述 在页面上设置一个"选择文件"按钮,点击该按钮,会弹出本地磁盘信息用于选择文件. 2.代码 ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>

jquery实现点击按钮弹出层和点击空白处隐藏层

昨天做项目遇到一个问题,和大家分享下,jquery实现点击按钮弹出层和点击空白处隐藏层的问题 if($('.autoBtn').length){                $('.autoBtn').find('.assess').unbind().bind('click',function(event){                    //取消事件冒泡                      event.stopPropagation(); if($('.abtnBox').is

Js浮动层插件,点击按钮弹出层,可关闭

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>石家庄礼品公司</title>

前端学习代码实例-JavaScript点击按钮弹出层效果

强大的效果其实都是由一个个简单的功能组合而成的,下面介绍一下如何实现点击一个按钮弹出一个层的效果. 代码实例如下: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>web前端开发学习q群:73

JS点击按钮弹出窗口

由于没有系统学习过JS,遇到一个需求:点击按钮,弹出一个独立的窗口. 在网上百度了一下,并没有找到满意的结果,最重要的是各种方法很复杂.最终,仔细研究了一下,原来只是需要只要一个简单的函数就能满足自己的需求:window.open(). window.open() 功能:open() 方法用于打开一个新的浏览器窗口或查找一个已命名的窗口. 语法: window.open(URL,name,specs,replace) 其中,URL为指定的要打开的页面的url: name,指定target属性或窗

点击按钮 弹出视频 并有遮罩层效果

涉及到css以及JavaScript. 最终显示效果:点击红色按钮,会有视屏弹出 并带有遮罩层 点击黄色区域可以关闭视频 并回到最初的状态. 页面主要代码:main中主要包含一个a,控制显示的按钮.设置有id值. <div class="main"> <a href="javascript:;" class="video" id="video"></a> </div> 以下代码就

ASP.NET点击按钮弹出确认对话框方法

开发asp.net网页应用程序的时候,有些页面的按钮需要增加一个确认对话框,比如: 实现这个功能比较简单,代码这样写: Button.Attributes["onclick"] = "javascript:return confirm('您确定删除吗?一旦删除将无法恢复!');"; 或 Button.Attributes.Add("OnClick", "javascript:return confirm('您确定删除吗?一旦删除将无法恢

点击按钮弹出一个div层

JQuery弹出层,点击按钮后弹出遮罩层,还有关闭按钮 <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>jQuery弹出层效果</title> <meta content="网页特效,特效代码,jQuery,css特效,Js代码" name="keywords" /> <

Android 点击按钮弹出菜单

效果图: 1.创建menu文件夹,新建main.xml文件 <?xml version="1.0" encoding="utf-8"?><menu xmlns:android="http://schemas.android.com/apk/res/android"> <item android:id="@+id/add" android:title="添加" /> <