漂定

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::

09 2013 档案

摘要:background: #ff6501; background-image: -webkit-gradient(linear, left top, left bottom, from( #ffa201 ), to( #ff6501 )); /* Saf4+, Chrome */ background-image: -webkit-linear-gradient( #ffa201 , #ff6501 ); /* Chrome 10+, Saf5.1+ */ background-image: -moz-linear-gradient( #ffa201 , #ff6... 阅读全文
posted @ 2013-09-17 16:14 漂定 阅读(171) 评论(0) 推荐(0)

摘要:// 发送邮件$phpmailer = new PHPMailer();$phpmailer->IsSMTP(); // 用smtp协议来发$phpmailer->Host = 'smtp.163.com';$phpmailer->SMTPAuth = true;$phpmailer->Username = '用户名';$phpmailer->Password = '密码';// 发信了$phpmailer->From = '发件人邮箱';$phpmailer->FromName = &# 阅读全文
posted @ 2013-09-11 21:48 漂定 阅读(236) 评论(0) 推荐(0)

摘要: 阅读全文
posted @ 2013-09-08 13:11 漂定 阅读(321) 评论(0) 推荐(0)

摘要:3D 1 2 3 4 5 6 阅读全文
posted @ 2013-09-05 17:24 漂定 阅读(544) 评论(0) 推荐(0)

摘要:function getURLToData($url){ $HTTP_Server = $url; $ch = curl_init(); curl_setopt ($ch,CURLOPT_URL,$HTTP_Server); curl_setopt($ch,CURLOPT_RETURNTRANSFER,1); curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,30); curl_setopt($ch,CURLOPT_USERAGENT,"Mozilla/5.0 (Linux; U; Android 4.1.1; zh-cn; MI... 阅读全文
posted @ 2013-09-05 16:12 漂定 阅读(1515) 评论(0) 推荐(0)

摘要:(function ($) { var types = ['DOMMouseScroll', 'mousewheel']; $.event.special.mousewheel = { setup: function () { if (this.addEventListener) { for (var i = types.length; i;) { this.addEventListener(types[--i], handler, false); ... 阅读全文
posted @ 2013-09-05 13:54 漂定 阅读(510) 评论(0) 推荐(0)

摘要://animationjQuery.extend({ easing: { // ******* back backEaseIn: function (p, n, firstNum, diff) { var c = firstNum + diff; var s = 1.70158; // default overshoot value, can be adjusted to suit return c * (p /= 1) * p * ((s + 1) * p - s) + firstNum... 阅读全文
posted @ 2013-09-05 13:52 漂定 阅读(247) 评论(0) 推荐(0)