色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

css表格密碼形式有哪些

任良志1年前4瀏覽0評論

CSS表格可以幫助我們美化頁面,提高用戶的交互體驗。尤其是在網頁傳統的登錄界面制作中,CSS表格的密碼形式會起到很好的保密作用。下面,我們就來看一看CSS表格密碼形式的幾種實現方式:

//1、將密碼字符全部變為小黑點
input[type=password] {
-webkit-text-security: disc;
-moz-appearance: textfield;
appearance: textfield;
}
//2、將密碼字符隱藏并在輸入框中顯示光標
input[type=password] {
font-family: "Lucida Console", Monaco, monospace;
letter-spacing: 4px;
-webkit-text-security: circle;
}
//3、使用光標圖片代替輸入框中的光標
input[type=password] {
-webkit-text-security: disc;
-webkit-box-sizing: border-box;
box-sizing: border-box;
background: url(cursor.png) no-repeat;
padding-left: 20px;
}
//4、讓輸入框輸入時產生漣漪圈效果
input[type=password] {
-webkit-background-clip: padding-box;
-moz-background-clip: padding-box;
background-clip: padding-box;
border: 2px solid rgba(0, 0, 0, 0.1);
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-transition: all .15s ease;
-moz-transition: all .15s ease;
-ms-transition: all .15s ease;
-o-transition: all .15s ease;
transition: all .15s ease;
background: -webkit-linear-gradient(top, transparent 50%, rgba(0, 0, 0, 0.06) 50%);
background: -moz-linear-gradient(top, transparent 50%, rgba(0, 0, 0, 0.06) 50%);
background: -o-linear-gradient(top, transparent 50%, rgba(0, 0, 0, 0.06) 50%);
background: -ms-linear-gradient(top, transparent 50%, rgba(0, 0, 0, 0.06) 50%);
background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.06) 50%);
}

以上四種密碼輸入框的CSS實現方式都有其獨特的效果和優越性,具體應用需要根據實際場景與需求進行選擇。希望本文能夠對你今后的網頁制作工作有所幫助。