网页非常简单的图片自动播放器
不需要任何插件自己实现图片自动播放器,代码如下:
HTML
Wrapper with div's as the "slides", which can contain any content.
<div id="slideshow">
<div>
<img src="http://farm6.static
… 更多... “网页非常简单的图片自动播放器” IT夜班车
不需要任何插件自己实现图片自动播放器,代码如下:
Wrapper with div's as the "slides", which can contain any content.
<div id="slideshow">
<div>
<img src="http://farm6.static
… 更多... “网页非常简单的图片自动播放器” 转载自:
http://tutorialzine.com/2013/04/50-amazing-jquery-plugins/
jQuery has a wonderful community of programmers that create incredible things. However, it may become difficult to sift through everything that is released and fi… 更多... “50个功能强大的jquery插件”
使用Yii已经做了好几个web应用了,发现这个东西越来越好用了。它的
让我爱不释手。今天谈谈Yii给你提供一个便利,能够测试你当前系统的配置是否满足了yii运行条件。
这里的系统总括
有个便利可以让你很容易检测因为你的系统导致的Yii某些功能不能正常的原因。其方法是通过运行yii/requirements/inde… 更多... “Yii 查看系统当前配置是否满足Yii运行条件”
问题:验证码还是显示不出来
访问
http://domain/yii-1.1.13.e9e4a0/requirements/
记住把domain换成你的,把yii-1.1.13.e9e4a0换成你所使用的Yii的版本。看看
GD extension with FreeType support or ImageMagick extension with PNG support |
Passed | CCaptchaAction |
是不是Pas… 更多... “Yii 验证码的使用”
SEO技术分为“白帽”和“黑帽”两种。“白帽”英文为whitehat,指那些使用正规方法,使网站排名自然上升的SEO技术。“黑帽”英文为blackhot,指专门用作弊手段取得排名的SEO方法。
白帽SEO
使用“白帽”技术把网站排名优化上去后,无需担心被搜索引擎惩罚,排名持久甚至永远有效。即使某天搜索引擎突然对排名算法进行调整,网站的排名也相对稳定。
选择白帽SEO服务的商家,大多注重长远利益,关心3年… 更多... “SEO的白帽和黑帽”
31.10.2008 Category: Web Design
In this tutorial we’re going to create a professional horizontal CSS menu. First we are going to create a HTML list by using Unordered List (ul) and List Item (li) e… 更多... “html css 菜单”
首先在配置文件保证下面module前面的#是去掉的
LoadModule deflate_module modules/mod_deflate.so
LoadModule headers_module modules/mod_headers.so
然后在配置文件的添加:
# for gzip
SetOutputFilter DEFLATE
SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png… 更多... “apache配置页面压缩发送和cache机制”
假设你已经安装了httpd,接下来安装ssl:
yum install mod_ssl openssl
生成证书
openssl genrsa -des3 -out www.xxx.com.key 1024
注意把xxx替换成你的域名
openssl req -new -key www.xxx.com.key -out www.xxx.com.csr
openssl x509 -req -days 365 -in www.xxx.com.csr -s
… 更多... “Centos让你的网站支持https” 如果你有自己的邮件服务器,可以使用你自己的邮件服务器的smtp来发邮件,但是有个问题,很多邮件服务商,如果google和yahoo可能会把从你邮件服务器发出的邮件视为垃圾邮件,其实这不算严重,严重者直接拒绝接受你的邮件。
因此使用gmail来发送邮件是个不错的选择。
Yii强大之处在于,它有很多的插件(extension),我们这里要用就是 yii-mail这个插件,地址如下:
http://www.yi… 更多... “Yii 使用gmail发送邮件”
如果你的网站有自己的logo,这样容易从众多的tab页面里面找到你的网站,它是一种标识,就像公司的logo一样,起着同样的意义。
那么怎么设置这个logo呢?有2种方法可以做到,各有优缺点。
方法一
<link rel="shortcut icon" href="http://www.xxx.com/favicon.ico">
方法二
<link rel="icon" href="favicon.p… 更多... “网页tab页面的logo”