一款非常好用的jquery滚动条样式插件 jquery.nicescroll

12-25 2,092 views

github地址 demo 使用方法 //默认 $(".do-nicescrol").niceScroll(); // $(".do-nicescrol").niceScroll({ cursorcolor:"aquam...
阅读全文 0

css画透明渐变背景图

7-24 4,512 views

参考 https://www.cnblogs.com/limeiky/p/6519452.html 效果图 代码 div { background-image: linear-gradient( to bottom, rgba(255...
阅读全文 0

网页禁止F12和查看源代码

7-12 4,939 views

一个网页禁止F12和查看源代码的函数 使用方法:在body中使用onLoad事件来调用这个函数 function disableInfo() { document.onkeydown = function() { ...
阅读全文 1

一个好用的JS 提示信息插件 noty

4-29 15,156 views

Github: https://github.com/needim/noty new Noty({ text: 'NOTY - a dependency-free notification library!', animation: { o...
阅读全文 1

bootstrap 导航下拉菜单鼠标滑过显示隐藏

3-22 3,290 views

参考:https://bootsnipp.com/snippets/Vm7d 效果 CSS body { margin: 30px 0px; } .navbar-default .navbar-nav > li.dropdown:hover > a, .n...
阅读全文 0

Vue.Js 学习笔记

3-04 2,325 views

课程观看地址:https://www.imooc.com/video/18551 1.课程环境 NVM 下载地址:https://github.com/creationix/nvm 安装 NPM , NODEJS ,NVM (nodejs版...
阅读全文 0

chartjs —— jquery柱状图插件

10-08 3,676 views

官网地址: http://www.chartjs.org 文档:http://www.chartjs.org/docs/latest/charts/bar.html CDN: https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2....
阅读全文 0

简单功能强大的jQuery图片剪裁插件Image Cropper

8-28 3,072 views

引入必要的js和css核心文件 <script src="/path/to/jquery.js"></script><!-- jQuery is required --> <link href="/path/to/cropper...
阅读全文 0

bootbox 水平垂直居中

8-26 4,078 views

bootbox.alert('Danger!!' ).find('.modal-content').css({ 'background-color': '#f99', 'font-weight' : 'bold', 'color': '#F00', 'font-...
阅读全文 0

ckeditor内容和表单一起提交,ajax提交

8-14 2,738 views

在ajax提交表单之前执行这个方法 function updateContent() { for(instance in CKEDITOR.instances){ CKEDITOR.instances[instance].updateEleme...
阅读全文 0