
pc
山沟沟里的娃
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
js屏蔽F12,ctrl+u,鼠标右击页面
<script> function stop() { clear(); return false; } document.oncontextmenu = stop; function clear() { window.location.reload(); } document.onkeydown = document.onkeyup = document.onkeypress = function原创 2020-05-31 10:50:50 · 387 阅读 · 0 评论 -
iconfont使用方法
<i class="iconfont"></i> css @font-face {font-family: 'iconfont'; src: url('../iconFont/iconfont.eot'); src: url('../iconFont/iconfont.eot?#iefix') format('embedded-...原创 2019-12-31 13:09:58 · 511 阅读 · 0 评论 -
CSS换行不换行
段落文字不超出几行,超出部分以省略号显示 一、div内显示一行,超出部分用省略号显示 white-space: nowrap; overflow: hidden; text-overflow: ellipsis; 二、div内显示两行或三行,超出部分用省略号显示 overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -w...原创 2019-08-15 15:50:24 · 140 阅读 · 0 评论 -
头部跟距滚动高度变色
html <div class="header"> <div class="bg"></div> </div> css .header{ height:1rem; border-bottom:.01rem solid #313131; position: fixed; top:0; left:0; width:100%; z...原创 2019-08-12 17:57:08 · 256 阅读 · 0 评论 -
输入框限制字数数量
<div class="srk"> <input type="text" placeholder='请输入问题' id="wby0" data-max='100' maxLength='100' onkeyup="wby(0)" /> <div class="tishiNum"><span id='titleNum'>0</spa...原创 2019-09-02 09:21:42 · 386 阅读 · 0 评论 -
jQuery-ui 记录历史签到
<script> var timearr=['2018-12-1','2019-1-7','2019-9-3','2019-9-8','2019-9-10']; $(function() { $( "#datepicker" ).datepicker({ showOt...原创 2019-09-27 08:42:04 · 175 阅读 · 0 评论