zoukankan      html  css  js  c++  java
  • 前端速查手册——Note

    目录


    自定义弹框(模块框)

    HTML5新增标签

    HTML5新增属性

     


    自定义弹框(模块框)

      HTML

    <div style="display:none" id="model"></div>
    <div style="display:none" id="notice_div" class="notice_div">
    	<div id="notice_header">
    		<div id="notice_title">提示信息</div>
    	</div>
    	<div id="notice_content">
    		<div id="notice_msg">信息</div>
    	</div>
    	<div id="notice_action">
    		<button class="confirm_btn" onclick="cancel()">确认</button>
    		     
    		<button class="return_btn" onclick="cancel()">返回</button>
    	</div>
    </div>
    

      CSS

    #model {
        100%;
        height:200%;
        position:fixed;
        left:0;
        top:0;
        background:black;
        opacity:0.8;
    }
    #notice_div {
         40%;
        height:200px;
        position:fixed;
        left:30%;
        top: 20%;
        height:30%;
        text-align:center;
        font-size:18px;
    }
    #notice_header {
        height: 50px;
        background-color:#1e88d4;
        border-radius: 10px 10px 0 0;
        color: black;
        font-weight:900;
    }
    #notice_title {
        padding-top:12px;
    }
    #notice_content {
        height:100px;
        background-color:#d3d7cf;
        border-top:1px solid gray;
        border-bottom:1px solid gray;
    }
    #notice_action {
        height:50px;
        background-color:#d3d7cf;
        text-align:center;
        border-radius: 0 0 10px 10px;
    }
    #notice_msg {
        margin-top:30px;
        color: black;
    }
    .confirm_btn, .return_btn {
        text-align: center;
         100px;
        height: 35px;
        line-height: 35px;
        margin-top:7px;
        letter-spacing: 5px;
        text-indent: 10px;
        background: #1e88d4;
        border: 1px solid #1e88d4;
        border-radius: 5px;
        display: inline-block;
        cursor:pointer;
    }
    .return_btn {
        background: #9ea09a;
        border: 1px solid #9ea09a;
    }
    

      

      JavaScript

    function alert_msg(content, title="提示信息") {
    	$("#notice_title").html(title);
    	$("#notice_msg").html(content);
    	$("#model").show();
    	$("#notice_div").show();
    }
    
    function cancel() {
    	$("#model").hide();
    	$("#notice_div").hide();
    } 
    

     

    HTML新增标签

     

     

    HTML5新增属性

      输入框自动获得焦点

      autofocus属性,可以直接写input标签中该属性即可(不用赋值)。也可以赋值为true或者“autofocus",都可以开启自动获得焦点。

    <input  type="text" autofocus />
    <input  type="text" autofocus=true />
    <input  type="text" autofocus="autofocus" />
    

      

      自动补全

      autocomplete属性,默认的是on,也就是开启了自动补全功能。可以设置为off,即可关闭自动补全。

        示例:

    <input  type="text" autocomplete="on" />
    <input  type="text" autocomplete="off" /> 
    

      如果想要全部禁用input的自动补全功能,可以使用jquery实现:

    $("input").attr("autocomplete", "off")
    

      

      

  • 相关阅读:
    19.音乐查询l练习
    python用requests爬取新浪财经首页要闻
    关于Pyhton正则报错: sre_constants.error: nothing to repeat at position
    python中的字典
    Python flask jQuery ajax 上传文件
    python中与时间有关的对象-datetime、time、date
    python os模块之实现多层目录文件查找
    python 字符串格式化输出 %d,%s及 format函数, 数字百分化输出
    linux unbuntu 虚拟环境 安装沙盒virtualenv 、virtualenvwrapper
    python实现二分查找
  • 原文地址:https://www.cnblogs.com/-beyond/p/10853531.html
Copyright © 2011-2022 走看看