上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页
摘要: /** **将图片加载到内存中,在页面任何位置引用的时候,直接从缓存中读取,提升用户的体验,提高网站的流畅度。** **/ 预加载图片 阅读全文
posted @ 2016-11-25 16:52 幸福的目标 阅读(178) 评论(0) 推荐(0) 编辑
摘要: function clickToggle(obj,elm){ $(obj).click(function(e){ $(this).siblings(elm).fadeToggle(); e.stopPropagation(); }); $(elm).click(function(e){ e.stopPropagation(... 阅读全文
posted @ 2016-11-25 10:59 幸福的目标 阅读(177) 评论(0) 推荐(0) 编辑
摘要: <input type="text" value="请输入用户名" onfocus="if(value=='请输入用户名') {value=''}" onblur="if (value=='') {value='请输入用户名'}"> 阅读全文
posted @ 2016-11-23 10:35 幸福的目标 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 打开第一层模态窗口 × 第一层模态窗口 ... 阅读全文
posted @ 2016-11-23 10:35 幸福的目标 阅读(1424) 评论(0) 推荐(0) 编辑
摘要: 1、同一个事件,点击显示和隐藏 $(document).ready(function(){ $('.container .nav-header').click(function(){ var change = $('.container .change-link') $('.container .menu').slideToggle(100); ... 阅读全文
posted @ 2016-11-23 10:34 幸福的目标 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 1 2 3 4 全选/取消全选 阅读全文
posted @ 2016-11-23 10:34 幸福的目标 阅读(144) 评论(0) 推荐(0) 编辑
摘要: $('div.panel-collapse').on('shown.bs.collapse hidden.bs.collapse', function() { $(this).dequeue('collapse'); }); $('div.panel-default').hover( function() { ... 阅读全文
posted @ 2016-11-23 10:32 幸福的目标 阅读(260) 评论(0) 推荐(0) 编辑
摘要: var isTouch=('ontouchstart' in window); if(isTouch){ $(".carousel").on('touchstart', function(e){ var that=$(this); var touch = e.originalEvent.changedTouches[0]; var star... 阅读全文
posted @ 2016-11-23 10:31 幸福的目标 阅读(149) 评论(0) 推荐(0) 编辑
摘要: (function($) { $.fn.extend({ show: function(div) { var w = this.width(), h = this.height(), xpos = w / 2, ypos = h / 2, eventType = "", direct = ""; t 阅读全文
posted @ 2016-11-21 17:26 幸福的目标 阅读(232) 评论(0) 推荐(0) 编辑
摘要: <!doctype html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="viewport" content="width=device-width, i 阅读全文
posted @ 2016-11-21 17:09 幸福的目标 阅读(542) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页