Jquery
丁小未
热爱游戏开发,热爱Coding!
展开
-
jQuery各种动画效果
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/1999/xhtml">#d1{background-color:Red;width:400px;height:400px;}$(function () {//往右下方放$("#btn1原创 2013-03-31 23:11:15 · 1313 阅读 · 0 评论 -
div的移动特效
#d1 { width:100px; height:100px; position:absolute; background-color:Red; left:10px; top:50px;原创 2013-04-06 16:46:24 · 1495 阅读 · 0 评论 -
jqZoom插件
一直对图片缩放饶有兴趣的我今日一个很投机的机会研究了一把 参考官方网站:http://www.mind-projects.it/projects/jqzoom/index.php 参考demo文献:http://www.mind-projects.it/projects/jqzoom/index.php#examples网站下方download一栏 在官方文档下载的dem转载 2013-04-06 17:41:08 · 2430 阅读 · 0 评论 -
导航效果
#navigation { position:absolute; top:0px;left:0px; margin:0px;padding:0px; width:120px;list-style:none; } #navigatio原创 2013-04-06 16:44:51 · 1973 阅读 · 0 评论 -
jqzoom实战
JQzoom Demo $(function () { $(".jqzoom").jqzoom(); });原创 2013-04-06 18:01:31 · 1836 阅读 · 0 评论 -
换肤
a { color:Black; } $(function () { //读取保存的cookie里面的css var css = $.cookie("css"); if (c原创 2013-04-07 19:28:07 · 1614 阅读 · 0 评论 -
JQuery学习笔记
1.JQuery简介 !JavaScript缺点: JQuery是对JavaScript进行了封装, 最好是把DOM能实现的功能也可以用JQuery来实现 !JQuery,可扩展的插件非常多 !JQuery优点:尺寸小,使用简单方便(Write Less,Do More,吃得少干得多.链式编程( $("#div1").draggble转载 2013-08-05 09:21:12 · 1537 阅读 · 0 评论 -
[EasyUI] EasyUI安装
1.1快速安装 1、引入“jquery-1.7.2.min.js”2、引入“jquery.easyui.min.js”3、引入“themes/default/easyui.css”1.2系统图标使用需要引入themes/icon.css 注意:css都在“themes”这个文件夹下面找 2.1 layout 布局把页面分成上下左右中五块,使用region转载 2013-12-01 16:43:25 · 4978 阅读 · 0 评论 -
[jQuery]empty()和remove()的区别
要用到移除指定元素的时候,发现empty()与remove([expr])都可以用来实现。可仔细观察效果的话就可以发现。empty()是只移除了 指定元素中的所有子节点,拿$("p").empty()来说,他只是把dsfsd中的文本给移除了,而留下 了,仍保留其在dom中所占的位置。remove([expr])则是把其从dom中删除,而不会保留其所占的位置。例:HelloWorld原创 2013-12-02 18:26:06 · 1411 阅读 · 0 评论 -
[jQueyr]选择器
jQuery选择器(1)基本#id element .class * selector1,selector2,selectorN (2)层次选择器:ancestor descendant parent > child prev + next prev ~ siblings (3)基本过滤器选择器:first :last :not :even :odd :eq转载 2013-12-10 16:36:17 · 1522 阅读 · 0 评论 -
js控制单选复选框(全选)
//获取单选按钮的选项值 function f1() { //radio集合 var radios = document.getElementsByName("sex"); for (var i = 0; i if (radios[i].checked) {原创 2013-03-17 23:29:47 · 2828 阅读 · 0 评论 -
jquery 制作的表格效果
$(function () { //表头 $("#salary tr:eq(0)").css({ "font-size": "30px", "text-align": "center" }) //最后一行 $("#salary tr:last").css("color", "red");原创 2013-03-31 10:10:55 · 2468 阅读 · 0 评论 -
导航 Jquery
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/1999/xhtml">弹出下拉菜单插件弹出层相对于自身的父层 http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js">>$(documen原创 2012-09-22 14:00:13 · 1655 阅读 · 0 评论 -
jQuery链式语法 用js生成页面 并且响应click事件
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/1999/xhtml"> .panel{ padding:60px; background-color:red; color:#FFFFFF;原创 2012-09-22 20:17:08 · 3988 阅读 · 1 评论 -
Flash图片动态展示
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/1999/xhtml">兼容各浏览器flash焦点幻灯片动画 var focus_width=360; var focus_height=270; var text_height=0;原创 2012-09-22 13:50:26 · 2532 阅读 · 0 评论 -
Jquery 超炫的导航效果
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/1999/xhtml"> JS仿flash效果横向和竖向导航菜单 - 小未-http://write.blog.csdn.net/postlist body { font-family: Verdana,原创 2012-09-22 14:08:29 · 3550 阅读 · 3 评论 -
收缩和展开效果
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/1999/xhtml">收缩展开效果/* 收缩展开效果 */.text{line-height:22px;padding:0 6px;color:#666;}.box h1{padding-left:10px;原创 2012-11-19 12:56:57 · 1821 阅读 · 0 评论 -
图片切换,带标题文字
http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">http://www.w3.org/1999/xhtml">图片切换,带标题文字#play{width:500px;height:230px; border:#ccc 1px solid;}#playBg{margin-top:200px;z原创 2012-11-19 12:58:32 · 2351 阅读 · 0 评论 -
图片切换展示效果
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/1999/xhtml">图片切换展示效果.scroll{width:408px;height:168px;overflow:hidden;position:relative;border:#ccc 1px solid;原创 2012-11-19 13:01:39 · 1433 阅读 · 0 评论 -
渐变弹出层
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/1999/xhtml">渐变弹出层/* 渐变弹出层 */#race{display:block;width:200px;height:50px;line-height:50px;text-align:center;原创 2012-11-19 13:03:54 · 1404 阅读 · 0 评论 -
导航特效
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/1999/xhtml">jquery导航菜单二级菜单slide滑动渐隐显示*{margin:0;padding:0;list-style-type:none;}a,img{border:0;}a,a:vis原创 2013-02-04 16:34:26 · 1425 阅读 · 0 评论 -
javascript语法
alert(new Date().toLocaleString()); varnum = new Number(); num =11; alert(num); var a= "a"; alert(a); var b= 'b'; alert(b); var a= "123";原创 2013-03-16 23:09:26 · 1776 阅读 · 0 评论 -
[JavaScript]JavaScript高级之词法作用域和作用域链
主要内容:分析JavaScript的词法作用域的含义解析变量的作用域链变量名提升时什么一、关于块级作用域 说到JavaScript的变量作用域,与咱们平时使用的类C语言不同. 例如C#中下面代码:static void Main(string[] args){ if(true)转载 2013-12-11 16:19:57 · 1526 阅读 · 0 评论