在往上逛的时候发现一篇日志,用AS3写出了Web2.0风格:平滑,有光泽而且稍微有点阴影。如图所示:查看原文:点击这里源代码查看:点击这里本文转自:http://www.5uflash.com/flashjiaocheng/Flash-as3-jiaocheng/1802.htmlAS3写的web2.0风格
系统 2019-08-29 23:35:37 2239
DFS,好像主要是对dfs的递归调用吧,自己也不太懂,总之,它很神奇,多看看代码吧#include#include#include#includeintn;intisp[100];intvis[100];intA[100];intis_prime(intx)//判断一个数是否为素数(该数比较小,不会引起超时){inti=1,k
系统 2019-08-29 22:28:11 2239
这里收集了大部分的Flex/AIR书籍http://flex.org/books/国外Flex3的书也有不少了Flex3Cookbook:Code-Recipes,TipsandTricksforRIADevelopershttp://astore.amazon.com/flexorg-20/detail/0596529856/102-9819763-9711314TheEssentialGuidetoFlex3(EssentialGuide)http:/
系统 2019-08-29 22:25:38 2239
项目地址:https://github.com/JakeWharton/Android-DirectionalViewPager这个别人已经试过了:Android之仿网易V3.5新特性http://blog.csdn.net/way_ping_li/article/details/9359191我只是重新测试了一下,感觉可以用。只是要注意,需要导入-v4.jar包,并且VerticalViewPagerCompat.java一定要放在android.sup
系统 2019-08-29 22:17:54 2239
Spring整合Hessian访问远程服务目录1.1Hessian简介1.2整合1.2.1概述1.2.2服务端整合1.2.3客户端整合1.1Hessian简介Hessian是一个轻量级的Web服务实现工具,它采用的是二进制协议,因此很适合发送二进制数据。它的一个基本原理就是把远程服务对象以二进制的方式进行发送和接收。1.2整合1.2.1概述对于Hessian而言,有服务端和客户端,所以我们的整合也需要分服务端的整合和客户端的整合。服务端的整合是通过Spri
系统 2019-08-29 22:12:10 2239
介绍1.例子中包含了mybatis的常用sql的写法2.动态sql的应用3.存储过程的使用目录MyBatis-config.xml中set的说明[]:表示可能的不太正确<
系统 2019-08-29 22:08:47 2239
HE:ConsistencyandStandards(一致性与标准化的设计规范)Don’tFrustratetheUser(不要迷惑用户)Usersbecomeaccustomedtocertainactionsandsequences,andtheyarelikelytobecomeconfusedorfrustratedwhentheyencounterunexpectedbehavior.Whenonescreenrequiresaspecifics
系统 2019-08-29 21:58:00 2239
今天是我第二天搞Watir,写了一段简单的代码:ie.goto("http://130.34.98.11:18080/bssframe");ie.text_field(:id,"STAFF_ID").set("SUPERUSR");ie.text_field(:id,"PASSWORD").set("XXXXXX");ie.button(:id,"bLoginSubmit").click;contentFrame=ie.frame(:id,"content
系统 2019-08-12 09:29:47 2239
[记录数模集训期间Matlab的学习过程]①模拟时针clear,closeall,clcdegree=[0:0.01:pi*2];plot(cos(degree),sin(degree),r-);set(gca,Xtick,[],Ytick,[]);boxon;axis([-1.31.3-1.31.3])axissquaretitle(模拟时钟,Fontsize,22,Fontname,华文行楷)%时针刻度form=5*pi/2:-pi/6:pi/2a=l
系统 2019-08-12 09:29:31 2239
校验是否全是数字组成:functionisDigit(s){varpatrn=/^[0-9]{1,20}$/;if(!patrn.exec(s))returnfalsereturntrue}校验登录名:只能输入5-20个以字母开头、可带数字、“_”、“.”的字串functionisRegisterUserName(s){varpatrn=/^[a-zA-Z]{1}([a-zA-Z0-9]|[._]){4,19}$/;if(!patrn.exec(s))re
系统 2019-08-12 09:29:28 2239