深圳市三旖网络设计有限公司|优秀网页设计公司|专业网站设计公司|深圳网站设计|
网站网页
深圳专业网站设计 :产品型企业网站 / 宣传型企业网站 / 商务型企业网站 / 塑造品牌企业网站
搜索引擎网站提交

Freewebsubmission.com 搜索引擎批量提交:这是最方便的一个。不过有个问题:国内的一些邮箱它直接封杀了,需要gmail得国外的邮箱才能提交信息。信息提交后很快就有详细的登录结果。但不会提交到百度。

百度网站登录入口:很方便。

有了以上两个利器其它就不用了。但万一那天第一个被封杀了怎么办?……所以还是补一个备用吧:

Google网站登录入口:使用很简单。

如果还不放心,请访问中国站长之家的专文《各大搜索引擎网站登录入口》

 
利用CSSLint做css校验

CSS Lint 能分析并检测你的网站CSS样式表有无问题。使用方法很简单,只需把样式表内容复制过去,点击“LINT!”按钮就可以了。

检查完成后CSS Lint会告诉你该样式表哪些地方有问题,只要依照它的指示修改就可以得到优化样式表。

网站链结:http://csslint.net/

这是个英文网站,为方便使用,现参照网站上的资料将一些提升信息附录如下:

内容对应的帮助页面:http://csslint.net/about.html

The CSS Lint Rules
CSS Lint 规则

Parsing errors should be fixed
必须修复所有错误

By default, CSS Lint shows any parsing errors. Parsing errors usually mean you mistyped a character and may cause the browser to drop your rule or a property. Parsing errors are presented as errors by CSS Lint, the most important issues to fix.

Don’t use adjoining classes
不要使用并列的选择符

Adjoining classes look like .foo.bar. While technically allowed in CSS, these aren’t handled properly by Internet Explorer 6 and earlier.
并列选择符不支持ie6或者更早的浏览器

ID: adjoining-classes

Remove empty rules
删除空属性规则

Any rule that doesn’t contain any properties, such as:

.foo {}

A lot of times, empty rules appear as a result of refactoring without further cleanup. Eliminating empty rules results in smaller file sizes and less style information for the browser to deal with.

ID: empty-rules

Use correct properties for a display
使用display属性所对应的属性(如行内元素不能浮动)

Even though you can define any group of properties together in a CSS rule, some of them will be ignored due to the display of the element. This leads to extra cruft in the CSS file. The list of properties that CSS Lint checks for are:

display: inline should not use width, height, margin (and all variants), padding (and all variants), or float.
行内元素不能设置宽、高、margin、padding和浮动
display: inline-block should not use float.
行内块状元素不能使用浮动
display: block should not use vertical-align.
块状元素不能使用水平对齐
display: table-* should not use margin (and all variants) or float.
表格元素不能浮动和margin

Removed the ignored or problematic properties decreases file size and improves performance.
移除浏览器忽略掉的和有问题的属性可减小文件大小和改善性能

ID: display-property-grouping

Don’t use too many floats
不要使用过多的浮动

Using float for layout isn’t a great idea, but sometimes you have to. CSS Lint simply checks to see if you’ve used float more than 10 times, and if so, displays a warning. Using this many floats usually means you need some sort of abstraction to achieve the layout.
超过10次浮动定义将会出现警告

ID: floats

Don’t use too many web fonts
不要定义太多的网页字体

Web fonts are growing in popularity and use of @font-face is on the rise. However, using web fonts comes with performance implications as font files can be quite large and some browsers block rendering while downloading them. For this reason, CSS Lint will warn you when there are more than five web fonts in a style sheet.
触发字体下载,并且部分浏览器会阻塞等待字体加载完成,一个样式表,字体设置不应该超过5个。

ID: font-faces

Don’t use too may font-size declarations
不要过多声明字体大小

A site is typically made up of a finite number of font treatments, including font size. If you have 10 or more font sizes specified, you probably want to refactor into a standard set of font size classes that can be used in markup.
超过10种字体大小设置最好使用选择器

ID: font-sizes

Don’t use IDs in selectors
不要使用id选择器(这是常见问题)

IDs shouldn’t be used in selectors because these rules are too tightly coupled with the HTML and have no possibility of reuse. It’s much preferred to use classes in selectors and then apply a class to an element in the page.
id不应该作为选择器是因为这些规则与html高耦合,从而散失了重用的可能性

ID: ids

Don’t qualify headings
不要定义多层级的标题(h1-h6)

Heading elements (h1-h6) should be defined as top-level styles and not scoped to particular areas of the page. For example, this is an example of an overqualified heading:
标题元素作为最层级的样式,而不能作为页面某部分局部定义

.foo h1 {
font-size: 110%;
}

Heading elements should have a consistent appearance across a site.
标题元素应该在一个站点中有统一的样式

ID: qualified-headings

Heading styles should only be defined once
标题元素只能定义一次

Heading elements (h1-h6) should have exactly one rule on a site. CSS Lint warns if it finds more than one.

ID: unique-headings

Zero values don’t need units
0值不需要带单位

An easy way to save bytes in CSS is not include units when a value is 0. For instance, 0px and 0 are the exact same measurement, so leave off the units and save!

ID: zero-units

Vendor prefixed properties should also have the standard
带有浏览器开发商前缀的属性也应该有以标准属性定义的

When using vendor-prefixed properties such as -moz-border-radius, make sure to also include the standard property. The standard property should preferably come after the vendor-prefixed one, such as:

.foo {
-moz-border-radius: 5px;
border-radius: 5px;
}

ID: vendor-prefix

CSS gradients require all browser prefixes
使用渐进增强的版本前缀,要求所有浏览器兼容

Right now, there is no standard CSS gradient implementation, which means using CSS gradients in a cross-browser way requires using many different vendor-prefixed versions. CSS Lint warns when a rule with a CSS gradient doesn’t have gradients for all supporting browsers.

ID: gradients

Avoid selectors that look like regular expressions
避免使用类似正则表达式的选择器

CSS3 adds complex attribute selectors such as ~= that are slow. When using attribute selectors, don’t use the complex equality operators to avoid performance penalties.

ID: regex-selectors

Beware of broken box models
当心打破盒子模型

Borders and padding add space outside of an element’s content. Setting width or height along with borders and padding is usually a mistake because you won’t get the visual result you’re looking for. CSS Lint warns when a rule uses width or height in addition to padding and/or border.
border、padding、margin,如果设置了宽高就会经常出错得不到你要的视觉效果

ID: box-model

Don’t use @import
不要使用@import

The @import directive prevents some browsers from downloading resources in parallel (see: Don’t use @import)

ID: import

Don’t use !important
不要使用!important
你永远会不知道哪个最重要,最后会陷入类似母亲与妻子先救谁的困境

Using !important overides any cascaded rule and may lead to specificity war. CSS Lint checks if you’ve used !important, and if so, displays a warning. If there’s at least 10 !important declaration in your code CSSLint displays an error.
如果你的代码中超过10个!important定义,CSSLint会出现错误提示。

ID: important

Include all compatible vendor prefixes
包括所有兼容的供应商前缀

Most CSS3 properties have vendor-prefixed equivalents for multiple vendors, including Firefox (-moz), Safari/Chrome (-webkit), Opera (-o), and Internet Explorer (-ms). Including all compatible vendor prefixes will give a consistent appearance for a wider range of users.

ID: compatible-vendor-prefixes

Avoid duplicate properties
避免重复定义属性

When you include the same property twice, it may be intentional (to provide a fallback) or unintentional (copy-paste error). If duplicate properties are found one after the other with different values, this is okay. For example:

.foo {
background: #fff;
background: rgba(255, 255, 255, 0.5);
}
However, if the properties either have the same value or are located at different spots in the rule, this results in a warning. For example:

.foo {
background: #fff;
color: #000;
background: rgba(255, 255, 255, 0.5);
}
ID: duplicate-properties

 
2011年我们的重点

最近几年是网络发生重大变革的时期。以下观念将急需更新:

1、我们没时间打理网站;或者:我们没办法安排人经常打理网站;

2、我们只是想展示一下我们的产品,所以我们只要和我们同行中的某个网站栏目差不多就行了。

3、我们的销售经理很忙的,没时间和你们面谈。


2011年我们的重点是为企业级的客户提供最强的营销型网站的设计。强到客户的胃口越大越好!

1、我们可以为客户提供最好的网站策划和网站设计;

2、我们能为客户提供现阶段最强的营销通道;

3、我们能为客户提供网络营销培训;

 
Joomla是什么软件?

Joomla!通常也简写成Joomla,发音jǐong la。我给它起的中文名是“囧啦!”,常常也相应地简化为“囧啦”。

囧啦为连续7年11次荣获大奖(6次摘冠,1次第二,2次第三)的内容管理系统,国内所说的智能建站系统的老大就是它!Joomla最大的优点有两点:一是使网站易于管理;一是除具有新闻/文章管理、多媒体管理、用户管理等诸多功能外,Joomla!还有成千上万个功能扩展!

全球2.6%的网站是用 Joomla 打造的!

Joomla也可以设计手机网站,或者手机和电脑都能浏览的网站!

 
Joomla是构建网站最好的软件吗?

不同的网站有不同的需求,所以选择建站软件要量体裁衣。但Joomla的确正是大多数企业或政府组织所需要的建站软件。Joomla可以构建的网站包括:
各种电脑浏览的网站
各种手机网站
各种手机和电脑同时都能浏览的网站

具体的类型包括:
政府网站
公益组织网站
企业网站
行业门户网站
电子商务网站(外贸、网络零售批发等)
社交网站(校友录、俱乐部等)
教育网站
旅游网站
多媒体网站(多媒体杂志、电子报刊等)
内部协作网
……
请点击此处看看这些实际的网站案例!

 

 
Joomla会为您带来什么?

1、最先进的管理模式——Joomla是全球合作的最好的软件,具备最先进的网站管理模式。
2、最便捷的日常维护——假如每天更新1篇文章和一个产品,只要资料准备好了,使用Joomla您大慨需要5分钟。网站一个月维护工作,总共也就花了您半天时间!如果每天更新10篇文章,一个月里1个熟练的管理员只需要11个小时!
3、用得越久,成本越低——Joomla源自2000年,它一直也将继续升级下去。您能想象有一天您只要通过升级就能换来一个三维立体的网站吗?!手工作坊时代早就过去了,赶快抛弃那些铲平又重建的高成本痛苦方式吧!
4、增加功能,唾手可得——Joomla!现在已有超过6000个以上的功能扩展(extensions),并且还在继续增长中,需要什么功能,常常立等可取!
4、一个核心,一网打尽——1个核心就可以让您的网站既能通过电脑浏览,也能通过各种手机浏览!

 

Joomla! 功能特色:

  • 完全数据库驱动的网站引擎
  • 新闻、产品或服务单元全部都可以编辑和管理
  • 主题单元可以由投稿作者新增内容
  • 可完全定制布局,包含侧选单方块
  • 用浏览器上传图片到你自己的图片库,以用于网站的任何地方
  • 动态论坛/意见调查/投票调查当场显示结果
  • 可在 Linux、FreeBSD、MacOSX 服务器、Solaris 及 AIX 上执行
阅读全文...
 
我们开发的开源Joomla功能扩展
从2009年,我们就为客户开发Joomla里应用的功能扩展。并把其中适用面较广的发布于“囧啦!中国”(joomla.cn)。主要有: 1、全球同类排名第三的商城组件VirtueMart的支付宝支付插件:Alipay for VirtueMart。 2、微博频道:在您的Joomla 1.6网站显示新浪微博和(或)腾讯微博中自己发表的微博。微博频道让访问你网站的人成为你的博友的利器!3、自动发布微博(Content Microblog):Content Microblog 1.0套件由一个组件和一个插件组成。能自动将Joomla网站的文章同时发布到你的新浪微博和腾讯微博里。在这样一个微博时代(光新浪微博用户数就已超过1亿),它可以大大提高你的工作效率,大大提高你的网站的影响力!!4、网站中直接将用户的信息以短信发给网站主人的“即时联络”组件。 5、Docman组件导入数据到Remository组件的脚本dm2remo。 6、货币汇率模块。 7、基于商城组件VirtueMart的业绩统计组件。 8、显示VirtueMart产品总数模块 更多更新的信息,请访问“囧啦!中国”(joomla.cn)。
 
让你的Joomla网站飞起来

Joomla网站的页面加载速度一直并不是强项。但其实只要两个简单的手段,访问Joomla网站的速度就会大大提高:

1、先通过插件管理,开启所有的搜索引擎友好链接(SEF)插件,再通过"全局设置"开启Joomla的搜索引擎友好链接(SEF);注意顺序不能颠倒。

2、用下面的代码替代掉你的Joomla根目录下的htaccess.txt的所有内容,然后将它改名为.htaccess:

阅读全文...
 


我们为您提供高品质的深圳网站建设、网站制作、网站开发、网站设计、网页设计、网页制作服务
Copyright © 2009 深圳市三旖网络设计有限公司 Shenzhen 3E Web Design Co.,Ltd.
公司地址:深圳市福田区益田路皇都广场A座506