国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

日常用的css基礎和自己常用的js封裝

番茄西紅柿 / 2649人閱讀

摘要:基礎初始化元素浮動清除浮動公用樣式居中對齊方式省略文字大小顏色值圖標大全刪除

css基礎:base
    /*
 * 初始化 
 */
*::after, *::before {
    box-sizing: border-box;
}
body {
    font-family: Microsoft YaHei, tahoma, arial, Hiragino Sans GB, 5b8b4f53, sans-serif;
    background: #fff;
}
html{
	-ms-text-size-adjust: 100%; 
	-webkit-text-size-adjust: 100%; 
	font-size: 62.5%;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td,
s,a,div {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

img {
    display: inline-block;
}

em {
    font-style: normal;
}
/* a */
.trans{ 
    transiton:all 0.3s; 
    -moz-transition:all 0.3s; 
    -webkit-transition:all 0.3s; 
    -ms-transition:all 0.3s;
}
a:focus {
    outline: none;
}
a,
a:hover {
    text-decoration: none;
}

a:visited,
a:link {
    text-decoration: none;
}

/* 元素i、select、input、textarea、button */
i {
    vertical-align: middle;
}

i,
label,
input[type=checkbox] {
    vertical-align: middle;
}

select {
    line-height: 24px !important;
    height: 30px !important;
    padding: 4px 2px !important;
}

input {
    font-size: 14px;
    display: inline-block;
    overflow: hidden;
    height: 30px !important;
    line-height: 28px !important;
    padding-left: 5px;
    vertical-align: middle;
    color: #333;
    border: 1px solid #dcdcdc;
    border-radius: 0;
    background-color: #fff;
}

input[type=button] {
    height: auto !important;
    padding: 4px 24px !important;
}

input[type=checkbox],
input[type=radio] {
    height: auto !important;
    padding: 0 !important;
    border: none;
}

.form-control[readonly] {
    opacity: 1;
    background-color: #f5f5f5;
}

textarea {
    overflow-y: auto;
    padding: 4px 6px !important;
    resize: none;
    transition: border .2s linear 0s, box-shadow .2s linear 0s;
    color: #333;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset;
}

textarea:focus {
    outline: 0 none;
}
/*浮動*/
.pull-left{
    float: left;
}
.pull-right{
    float: right;
}

/*清除浮動*/
.clearfix::after, 
.clearfix::before,
.form-group::after,
.form-group::before {
    content: " ";
    display: table;
}
.clearfix,.clearfix::after,
.form-group,.form-group::after{
    clear: both;
}

/*     公用樣式
*==================================================================
*/
.width1200 {
    width: 1200px !important;
}
/* 居中 */

.m-c {
    margin: 0 auto;
}


/* 對齊方式 */
.t-c-f {
    text-align: center !important;
}

.t-l-f {
    text-align: left !important;
}

.t-r-f {
    text-align: right !important;
}
/* 省略 */
.el-sl {
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* 文字大小 */
.f12 {
    font-size: 12px;
}

.f14 {
    font-size: 14px;
}

.f16 {
    font-size: 16px;
}

.f18 {
    font-size: 18px;
}
.f22{
    font-size:22px;
}
.f24{
    font-size:24px;
}
.f28{
    font-size:28px;
}

.b {
    font-weight: bold;
}

.b-n {
    font-weight: normal;
}


/* 顏色值 
 * ===============
 */

.white {
    color: #fff;
}
.white-bg {
    background: #fff;
}
.dark {
    color: #000;
}

.gray333 {
    color: #333;
}

.gray333-bg {
    background: #333;
}

.gray999 {
    color: #999;
}

.gray999-bg {
    background: #999;
}

.gray666 {
    color: #666;
}

.gray666-bg {
    background: #666;
}

/*      圖標大全
 *====================================
 */
.i-all {
    display: inline-block;
    background: url(../../img/icon/i_all.png) no-repeat;
}

/*刪除*/
.i-del {
    width: 13px;
    height: 15px;
    background-position: -61px -17px;
}
.i-del:hover,
.i-del.active,
.i-del-h {
    width: 13px;
    height: 15px;
    background-position: -55px -33px;
}
/*
 *彈窗
*/
.c-modalBg {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}

.c-modalBox {
    position: fixed;
    z-index: 12;
    top: 50%;
    left: 50%;
    display: none;
    /* margin-top: 150px;*/
    margin-left: -250px;
    border-radius: 5px;
    background: #fff;
}

.c-modalBox .c-modalBox-title {
    font-weight: bold;
    line-height: 48px;
    width: 100%;
    height: 48px;
    color: #333;
    border-bottom: 1px solid #e8e8e8;
    border-radius: 5px 5px 0 0;
    background: #fafafa;
}
.c-modalBox .c-modalBox-title .i-close {
    font-size: 36px;
    font-style: normal;
    font-weight: lighter;
}
/*
 *
 *tipsBox 提示框
 */
.tipsBox{
    width:200px;
    position:fixed;
    top:25%;
    left:50%;
    margin-left:-90px;
    z-index:999999;    
}
.tipub{
	padding: 10px;	
    border-radius:4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    box-shadow:0 0 3px #ffffd inset;
    -webkit-box-shadow: 0 0 3px #ffffd inset;
}
.tipsBox .bgcolok{
	background-color:#4AAF33;
}
.tipsBox .bgcolerror{
	background-color:#EB6B62;
}
.tipsBox .bgcolwarn{
	background-color:#F7BA86;
}
.tipsBox img{
    vertical-align: middle;
    margin-right:5px;
    margin-top: -4px !important;
}

 JS基礎:

  

(function($){
	//$.fn.extend({}) 對象實例來調用此方法 $("").方法名()
	$.fn.extend({
		/*
		 剩余輸入字數
		 num:要輸入的字數總個數
		 * eg:$(".length100").getTextLen(100)
		 * 	  $(".length100").getTextLen(1000)
		 * */
		getTextLen: function(num) {
            var _num = num;
            var timer = null;
            $(this).on(mouseover, function() {
                clearInterval(timer);
                $(this).attr(maxLength, _num);
                var _this = $(this);
                timer = setInterval(function() {
                    var thisVal = _this.val();
                    if (thisVal.length > _num) {
                        thisVal = thisVal.substring(0, _num);
                        _this.val(thisVal);
                    }
                    _this.parent().find(.leng).text(thisVal.length);
                }, 30);
            });
            $(this).mouseover();
        },
  
	});
	
	//$.extend({})  直接用jQuery類即可引用 $.方法名()
	$.extend({
		/*
		 * 
		*提示框,  
		*目前三個參數 txt:要顯示的文本;times:自動關閉的時間(不設置的話默認1500毫秒) status:狀態,
		*eg:  $.showTips(請輸入文本提示);     $.showTips(提交成功~ 即將進入下一步,1500,1);
		*
		*/	
		showTips:function(txt,times,status){
			var showHtml = "";
			if(txt != ""){
				if(status == 1 && status !=undefined){
					console.info("1111");
					showHtml = 
+
OK+txt+
+
; }else if(status == 2){ showHtml =
+
error+txt+
+
; console.info("222"); }else{ showHtml =
+
warn+txt+
+
; console.info("other"); } } $("body").prepend(showHtml); if(times == "" || times == undefined){ //默認消失時間 1.5s times = 1500; } setTimeout(function(){ $(".tipsBox").remove(); },times) }, /* * 常用正則 * eg: $.方法名() * */ //手機號
         isPhone:function(p){
            var isMobile=/^(((13[0-9]{1})|(15[0-9]{1})|(18[0-9]{1}))+d{8})$/;
             return isMobile.test(p) ? true : false;
         },
        //郵箱
         isEmail:function(e){
             var isEmail=/^([a-zA-Z1-9_.-])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,4})+$/;
            return isEmail.test(e) ? true : false;
         }
//身份證
}) })(jQuery); /* * Img:要放圖片的img元素,onload時傳參可用this * maxHeight :img元素的高度,像素(圖片框 最大高度) * maxWidth:img元素的寬度,像素(圖片框 最大寬度) * eg: * */ function AutoResizeImage(Img, maxWidth, maxHeight) { var image = new Image(); //原圖片原始地址(用于獲取原圖片的真實寬高,當標簽指定了寬、高時不受影響) image.src = Img.src; // 當圖片比圖片框小時不做任何改變 if (image.width < maxWidth&& image.height < maxHeight) { Img.width = image.width; Img.height = image.height; } else{ //原圖片寬高比例 大于 圖片框寬高比例,則以框的寬為標準縮放,反之以框的高為標準縮放 if (maxWidth/ maxHeight <= image.width / image.height) { //原圖片寬高比例 大于 圖片框寬高比例 Img.width = maxWidth; //以框的寬度為標準 Img.height = maxWidth* (image.height / image.width); } else { //原圖片寬高比例 小于 圖片框寬高比例 Img.width = maxHeight * (image.width / image.height); Img.height = maxHeight ; //以框的高度為標準 } } } /* * 圖片比例縮放 * eg: * */ /*function scalingImg(obj){ var $this = $(obj); var imgWidth=$this.width(); var imgHeight=$this.height(); var parent = $this.parent(); var containerWidth = parent.width(); var containerHeight=parent.height(); var containerRatio = containerWidth / containerHeight; var imgRatio = imgWidth / imgHeight; if (imgRatio > containerRatio) { imgWidth = containerWidth; imgHeight = containerWidth / imgRatio; } else if (imgRatio < containerRatio) { imgHeight = containerHeight; imgWidth = containerHeight * imgRatio; } else { imgWidth = containerWidth; imgHeight = containerHeight; } $this.attr(width,imgWidth); $this.attr(height,imgHeight); }*/ /* * * tab切換 * eg: * */ function setTab(name,cursel,n){ for(i=0;i<=n;i++){ var menu=document.getElementById(name+i); var con=document.getElementById("con"+name+i); if(menu == null || con == null)continue; menu.className=i==cursel?"hover":""; con.style.display=i==cursel?"block":"none"; } }

用JQuery實現選中select里面的option顯示對應的div

HTML:

   

  

內容一

  

  

  

 $(".j-pactchoose").on(change,function(){
        var i = $(this).find("option:selected").val();
        if($("#pressDrug"+i).length == 1){
            $("#pressDrug"+i).show().siblings(".opt-lessdrug").hide()
        }else{
            $(".opt-lessdrug").hide()
        }
        
    })

 

常用的插件:1、彈窗:  http://mishengqiang.com/sweetalert/ 、http://layer.layui.com/

      2、Infinite-Scroll無限滾動加載數據:http://demo.sucaihuo.com/108/

      3、圖片上傳webuploader: http://fex.baidu.com/webuploader/  和 http://www.jq22.com/jquery-plugins%E4%B8%8A%E4%BC%A0-1-jq 

      4、分頁layui: http://www.layui.com/demo/laypage.html 和 jQuery Pagination分頁插件(ZXX): https://www.zhangxinxu.com/jq/pagination_zh/ 

      5、圖片延遲加載: http://www.jq22.com/jquery-info390

      6、angularjs 鏈接: https://www.cnblogs.com/ermu-learn/p/5913760.html

      7、Vue鏈接:

      8、select多選: http://wenzhixin.net.cn/p/multiple-select/docs/index.html?locale=zh_CN#the-position

                     9、省市聯動:http://www.jq22.com/yanshi16612

      ............等等等 用到在加隨時更新

 

這些都是很常見很常見的,不為了學習,只是找個地方封存起來,直接方便用,要是對你有幫助,也算是盡了一份力

demo:

 

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/2019.html

相關文章

  • 大前端2018現在上車還還得及么

    摘要:面向對象三大特征繼承性多態性封裝性接口。第五階段封裝一個屬于自己的框架框架封裝基礎事件流冒泡捕獲事件對象事件框架選擇框架。核心模塊和對象全局對象,,,事件驅動,事件發射器加密解密,路徑操作,序列化和反序列化文件流操作服務端與客戶端。 第一階段: HTML+CSS:HTML進階、CSS進階、div+css布局、HTML+css整站開發、 JavaScript基礎:Js基礎教程、js內置對...

    stormgens 評論0 收藏0
  • 大前端2018現在上車還還得及么

    摘要:面向對象三大特征繼承性多態性封裝性接口。第五階段封裝一個屬于自己的框架框架封裝基礎事件流冒泡捕獲事件對象事件框架選擇框架。核心模塊和對象全局對象,,,事件驅動,事件發射器加密解密,路徑操作,序列化和反序列化文件流操作服務端與客戶端。 第一階段: HTML+CSS:HTML進階、CSS進階、div+css布局、HTML+css整站開發、 JavaScript基礎:Js基礎教程、js內置對...

    mylxsw 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<