摘要:
<?PHP set_time_limit(0); $base = "网址"; $arr1 = range('A','G'); $arr2 = range(0,9); $arr = array_merge($arr1,$arr2); $arr[] = '*'; $ch = curl_init(); for($i=34; $i<50; $i++){ foreach($arr as $key=>$value){ $query = urlencode("46 and (select substr((sele 阅读全文
摘要:
select top 1 name from nchladata..sysobjects where xtype='U' and id not in(select top 55 id from nchladata..sysobjects where xtype='U')select top 1 name from test where name in (select top 1 name from test order by name desc) order by name asc 阅读全文
摘要:
前几天写了HTML5的俄罗斯方块,其实也不是想好好练一下HTML5,其实真正是想把HTML5的socket通信功能好好熟悉一下,当然喽,下一步也就是HTML5俄罗斯方块的网络对战版,敬请期待哦(网址http://www.9k6.net/games)今天尝试了一下html5的postMessage功能,一度出现了代码出错的问题,结合出现的错误,在这里给大家分享一下,以便大家遇到类似问题时不会抓耳挠腮~~两个页面,index.html和inner.html,其中在index中使用iframe调用inner.html页面。最初写的代码如下(出错的代码)index.htmlView Code 1 &l 阅读全文
摘要:
昨天晚上,和搞C的朋友在一起,闲来无事,商量着一人搞一个俄罗斯玩玩吧,几天之后拿出来比比谁的更有特色,结果我打算使用HTML5写一个俄罗斯方块。自己写了一些俄罗斯方块的函数,现记下,分享给有需要的人(方法都是最原始的方法,有问题望多多指教)。后来改写后成型的HTML5俄罗斯方块体验地址:http://www.9k6.net/games以下的图形都是已经设置了方向,可以随意旋转,配置自定义颜色和坐标1、三叉图形:View Code /* * * @以长矩形的底边中心为pointX,pointY * @point ... 阅读全文
摘要:
闲着没事,帮朋友写了一个文件夹遍历类,但是写到了一半,他说不用了,所以下边是功能不是很全的代码,但是基本功能已经实现了View Code 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 &l 阅读全文
摘要:
var can = $$('can');var cans = can.getContext('2d');window.location=cans.canvas.toDataURL('image/png'); 阅读全文
摘要:
PPT的背景有的很好看,其实有的是用图片,有的是用渐变做的,今天我试着做了一个渐变式的PPT背景图(特殊用途),使用的是Canvas的径向渐变矩形,其实没什么特殊的,直接上代码吧View Code <!DOCTYPE html><html><head><meta charset="utf-8"><title>Canvas</title><meta name="keywords" content="Canvas"><meta name=" 阅读全文
摘要:
Canvas还有一个好的功能就是将文字书写出来,看实例<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title>Canvas</title> </head> <style type="text/css"> body{margin:20px auto; padding:0; width:800px; } canvas{border:dashed 2px #CCC} </style> < 阅读全文
摘要:
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title>Canvas</title> </head> <style type="text/css"> body{margin:20px auto; padding:0; width:800px; } canvas{border:dashed 2px #CCC} </style> <script type="text/java 阅读全文
摘要:
Canvas是一个功能相当强大的画布,任由你去书写,当然,他也支持了图像处理的功能。drawImage(image,Dx,Dy);//用于显示,有时会超出drawImage(image,Dx,Dy,Dw,Dh);//用于缩放drawImage(image,Sx,Sy,Sw,Sh,Dx,Dy,Dw,Sh);//用于剪裁、缩放、显示注:image是一个图像对象; Dx是画布中的x坐标,Dy是画布中的y坐标,Dw是图像在画布中的宽度,Dy是图像在画布中的高度,Sx,Sy,Sw,Sh分别是原图像中的x、y、width、height(本人较懒,略写一下)。下面是一个给出的剪裁的方法源代码:<!DO 阅读全文