上一页 1 ··· 73 74 75 76 77 78 79 80 81 ··· 157 下一页

2014年2月10日

android versions

摘要: http://developer.android.com/about/versions/kitkat.html 阅读全文

posted @ 2014-02-10 15:59 freeliver54 阅读(283) 评论(2) 推荐(0)

2014年2月8日

百度 搜索营销 在线课堂

摘要: http://edu.baidu.com/marketing/personal-course.html 阅读全文

posted @ 2014-02-08 12:34 freeliver54 阅读(186) 评论(0) 推荐(0)

2014年1月29日

[转]微信公众平台消息接口开发(1)启用接口

摘要: 本文转自:http://www.cnblogs.com/txw1958/archive/2013/01/24/weixin-if1-enable.html关键字:微信公众平台开发 作者:方倍工作室 出处:http://www.cnblogs.com/txw1958/p/wechat-tutorial... 阅读全文

posted @ 2014-01-29 16:09 freeliver54 阅读(371) 评论(0) 推荐(0)

[转]动态调用webservice时 ServiceDescriptionImporter类在vs2010无法引用的解决方法

摘要: 本文转自:http://blog.csdn.net/limlimlim/article/details/8647038[导读]ServiceDescriptionImporter是创建Web Service 时使用的类,它是引用继承System.Web.Services 当我将VS2005里写的一段代码放在VS2010里时,发现引用出现错误标志.代码如下: '// 3. 创建客户端代理代理类。 ServiceDescriptionImporter importer = new ServiceDescriptionImporter();//VC Dim importer As Servi 阅读全文

posted @ 2014-01-29 11:32 freeliver54 阅读(2776) 评论(0) 推荐(0)

2014年1月28日

[转]25个HTML5和JavaScript游戏引擎库

摘要: 本文转自:http://www.open-open.com/news/view/27c6ed1. The GMP JavaScript Game Engine GMP是一个基于精灵2-D游戏,它可以很容易地设计复古风格的街机游戏。它也非常适合于制作拼图,数独或gogopop。GMP已经提供了一些实用游戏原型,减少游戏开发周期。项目地址2. PlaycraftThe Playcraft Engine equips you with a complete HTML5 game engine toolset that gives you everything you need to build yo 阅读全文

posted @ 2014-01-28 09:56 freeliver54 阅读(493) 评论(0) 推荐(0)

[转]15 个顶级 HTML5 游戏引擎

摘要: 本文转自:http://www.open-open.com/news/view/13874db1) HTML5 Game EngineConstruct 2 is a leading high quality HTML5 game engine. Tens of thousands of HTML5 game developers are choosing Construct 2 to make HTML5 games.2) Clanfxclanfx is a 2D, tile-based Javascript game engine developed using Javascript an 阅读全文

posted @ 2014-01-28 09:45 freeliver54 阅读(948) 评论(0) 推荐(0)

2014年1月27日

[转]position:relative leaves an empty space

摘要: 本文转自:http://stackoverflow.com/questions/5229081/positionrelative-leaves-an-empty-space在使用relative进行定位时比如一个设置了width的td内 包含select 和 input将input通过position:relative ; top:-23px 进行位置上移 覆盖了select的部分区域但td的高度 却还是两个控件的高度可以通过margin-bottom的设置 来使其空白不占高度Another trick which worked fine for me is to use a negative 阅读全文

posted @ 2014-01-27 10:26 freeliver54 阅读(497) 评论(0) 推荐(1)

2014年1月26日

[转]关于position 的 static、relative、absolute、fixed、inherit

摘要: 本文转自:http://www.56770.com/faq/list/?id=410position 有五个值:static、relative、absolute、fixed、inherit。static是默认值。就是按正常的布局流从上到下从左到右布局,平常我们做网页时,没有指定 position,也就表示使用 static。relative没有脱离布局流,此时可以使用 top、right、bottom、left 属性。top 和 bottom 共存时,使用 top 值,忽略 bottom 值;left 和 right 共存时,使用 left 值,忽略 right 值;relative 是相对位 阅读全文

posted @ 2014-01-26 17:34 freeliver54 阅读(192) 评论(0) 推荐(0)

2014年1月24日

[转]如何:定义和处理 SOAP 标头

摘要: 本文转自:http://msdn.microsoft.com/zh-cn/library/vstudio/8728chd5(v=vs.100).aspx本主题专门介绍一项旧有技术。现在应通过使用以下链接来创建 XML Web 服务和 XML Web 服务客户端: Windows Communication Foundation .代码示例使用 ASP.NET 创建的 Web 服务可以定义和操作 SOAP 标头。通过在特定 SOAP 标头中定义表示数据的类并从 SoapHeader 类派生它,便可完成 SOAP 标头的定义。定义表示 SOAP 标头的类创建一个从 SoapHeader 类派生的类 阅读全文

posted @ 2014-01-24 17:17 freeliver54 阅读(1437) 评论(0) 推荐(0)

2014年1月23日

jquery mobile - select and input - horizontal - in same line

摘要: 控件组合的水平布局select + input 在同一行注意jquery mobile 的js 和css 的版本,一些低版本 估计不支持 Welcome To My Homepage title Footer Text 阅读全文

posted @ 2014-01-23 10:35 freeliver54 阅读(1950) 评论(0) 推荐(0)

demos.jquerymobile

摘要: http://demos.jquerymobile.com/1.0/http://jquerymobile.com/download/ 阅读全文

posted @ 2014-01-23 10:00 freeliver54 阅读(280) 评论(0) 推荐(0)

2014年1月22日

[转]jquery mobile中redirect重定向问题

摘要: 本文转自:http://blog.csdn.net/fokle/article/details/18268813在jquerymobile提交后如果要进行网页重定向时,一定要在form或标签中使用data-ajax="false",否则不能实现重定向问题。如:删除或。。。。 阅读全文

posted @ 2014-01-22 15:16 freeliver54 阅读(1340) 评论(0) 推荐(0)

2014年1月21日

w3schools juerymobile

摘要: http://www.w3schools.com/jquerymobile/jquerymobile_examples.asp Welcome To My Homepage Welcome! Go to Page Two Footer Text Welcome To My Homepage Goodbye! Go to Page One Footer Text 阅读全文

posted @ 2014-01-21 08:59 freeliver54 阅读(368) 评论(0) 推荐(0)

2014年1月20日

[转]让你的网页文本框增加光晕效果与提示,水印(类似QQ2011)

摘要: 本文转自:http://www.cnblogs.com/xiaofengfeng/archive/2013/01/28/2880344.html让你的网页文本框增加光晕效果(类似QQ2011)我们都知道默认的Asp.Net文本框很丑陋的,看到QQ2011版的登录输入文本框那种光晕效果,不免让我们很是向往,不过我查看了源码却发现是通过C++实现的,那如何在我们的Asp.Net中添加同样的功能呢?先给大家秀一下我的运行截图:默认文本框样式:鼠标移入文本框:是不是很酷呢?下面我将一一解释如何做出来的?首先我们建立一个WebSite应用程序。在开始做之前建立一个文件夹plugins/textbox并引 阅读全文

posted @ 2014-01-20 17:58 freeliver54 阅读(288) 评论(0) 推荐(0)

[转]jQuery TextBox Water Mark with asp.net

摘要: 本文转自:http://naspinski.net/post/jQuery-TextBox-Water-Mark-with-aspnet.aspxI stole majority of this code fromhttp://www.aspcode.net/A-watermark-texbox-with-JQuery-and-aspnet.aspx but I added a bit to make it swap css classes as well $().ready(function() { swapValues = []; $(".wm").each(funct 阅读全文

posted @ 2014-01-20 17:50 freeliver54 阅读(338) 评论(0) 推荐(0)

[转]js 判断图片存在

摘要: 转自:http://blog.csdn.net/qq415734794/article/details/726147901.//检查图片是否存在 02.function CheckImgExists(imgurl) { 03. var ImgObj = new Image(); //判断图片是否存在 04. ImgObj.src = imgurl; 05. //没有图片,则返回-1 06. if (ImgObj.fileSize > 0 || (ImgObj.width > 0 && ImgObj.height > 0)) { 07. aler... 阅读全文

posted @ 2014-01-20 09:31 freeliver54 阅读(427) 评论(0) 推荐(0)

[转]js判断url是否有效

摘要: 本文转自:http://www.cnblogs.com/fumj/p/3490121.html方法一:(仅适用于ie) function CheckStatus(url) { XMLHTTP = new ActiveXObject("Microsoft.XMLHTTP") XMLHTTP.open("HEAD",url,false) XMLHTTP.send() return XMLHTTP.status==200 } function NetPin... 阅读全文

posted @ 2014-01-20 09:28 freeliver54 阅读(11412) 评论(1) 推荐(0)

2014年1月14日

[转]div 让文字或图片居中

摘要: 本文转自:http://qsfwy.iteye.com/blog/250206在div 中让 文字或图片居中,请参考以下代码1: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 居中百度 参考代码2: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -.. 阅读全文

posted @ 2014-01-14 15:39 freeliver54 阅读(328) 评论(0) 推荐(0)

[转]div内容底部对齐

摘要: 本文转自:http://blog.csdn.net/hellomy/article/details/5889833 CSS实现文字底部对齐 网页特效ggg 阅读全文

posted @ 2014-01-14 11:15 freeliver54 阅读(295) 评论(0) 推荐(0)

2014年1月13日

[转]SQLSERVER存储过程调用不同数据库的数据_存储过程中通过链接服务器访问远程服务器

摘要: 本文转自:http://blog.csdn.net/nnaabbcc/article/details/7967761存储过程调用不同数据库的数据 在存储过程调用不同数据库的数据该如何做,比如在存储过程名为AAA的存储过程里面调用数据库为hudu1,hudu2,hudu3里面的数据来统计? 在同一台数据库服务器上: select * from hudu1.dbo.表名 select * from hudu2.dbo.表名 select * from hudu3.dbo.表名 在不同数据库服务器上: select * from... 阅读全文

posted @ 2014-01-13 11:36 freeliver54 阅读(1575) 评论(1) 推荐(0)

上一页 1 ··· 73 74 75 76 77 78 79 80 81 ··· 157 下一页

导航