前端经验

html获取链接上面的参数

$( body ).click( function (){//html获取链接上面的参数 function getQueryString(name){ var reg = new RegExp( (^|) + name + =([^]*)(|$) ); var r = window.location.search.substr(1).match(reg); if (r!=null) return r[2]; else return ;}va...

前端经验

jQuery监听enter(回车)事件

!doctype html html head meta charset = utf-8 title jQuery监听enter(回车) / title script src = http://test-wx.ixincheng.com//xcview/js/common/jquery-2.1.1.min.js / script style / style / head body input type = text id = search_input 输...

前端经验

导航动画背景跟随鼠标效果

!doctype html html head meta charset = utf-8 title 导航滑动跟随效果 / title script src = http://libs.baidu.com/jquery/1.10.2/jquery.min.js / script style *{ margin : 0px ; padding : 0px ; } body { font-size : 12px ; min-width : 1200...

前端经验

鼠标经过图片hover放大效果完整案例

!doctype html html head meta charset = utf-8 title 鼠标hover放大效果 / title script src = http://libs.baidu.com/jquery/1.11.3/jquery.min.js / script style .box { width : 200px ; height : 200px ; overflow : hidden; float : left; margin...

前端经验

CSS改变input输入框闪烁光标的颜色

第一种 !doctype html html lang = en head meta charset = UTF-8 title 改变输入框光标颜色 / title style input { color : #333 ; caret-color : red; } / style / head body !-- Safari以及IE浏览器有兼容问题 -- input value = 改变...

前端经验

ucharts图表引入的两种方式

第一种按插件的例子引入 view class = qiun-columns view class = qiun-bg-white qiun-title-bar qiun-common-mt view class = qiun-title-dot-light 基本折线图/view/viewview class = qiun-charts canvas canvas-id= canvasLineA id= canva...

前端经验

使用css3绘制三角形(上下左右)

第一步:新建div盒子 div class = sanjiaoxing /div 第二步:为盒子添加CSS样式。 上三角形 .sanjiaoxing { width : 0 ; height : 0 ; border-right : 50px solid transparent; border-left : 50px solid transparent; border-bottom...