新模板正在调试中,同时友情链接已经转移到详细的链接页面,点这里查看!.

最新日志.

大行412初定配

2012.02.17 Posted in 生活娱乐 暂无评论

有打算上一台412...

Read the rest of this entry »

CSS鼠标划过弹出层

2012.02.15 Posted in 前端开发 暂无评论

2012绿色小清新主题[窄版] 发布

2012.01.09 Posted in 前端开发 7条评论

前段时间在不知道什么名字的国外站点看到的风格,比较清新,自己写了下做成tp的皮了
这一款比较窄,还有一些固定链接或者文字需要手动修改,现在打包出来,不做别的说明,这款是窄版,稍后可能会有一款宽版的

Read the rest of this entry »

返回顶部功能之完美篇

2011.12.09 Posted in 前端开发 2条评论

首先加载jquery(如果你的博客已经加载了,就不要重复加载jquery了)

1
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>

然后新建一个名为huadong的js文件,在里面写入如下内容:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
jQuery(document).ready(function($) {
var s = $('#shangxia').offset().top;
$(window).scroll(function() {
$("#shangxia").animate({
top: $(window).scrollTop() + s + "px"
},
{
queue: false,
duration: 500
})
});
$body = (window.opera) ? (document.compatMode == "CSS1Compat" ? $('html') : $('body')) : $('html,body');
$('#shang').click(function() {
$body.animate({
scrollTop: '0px'
},
400)
});
$('#xia').click(function() {
$body.animate({
scrollTop: $('#footer').offset().top
},
400)
});
$('#comt').click(function() {
$body.animate({
scrollTop: $('#comments').offset().top
},
400)
});
});

然后在头部加载huadong.js文件:

1
<script type="text/javascript" src="js/huadong.js"></script>

在头部写下如下代码:

1
<div id="shangxia"><div id="shang"></div><div id="comt"></div><div id="xia"></div></div>

CSS代码,添加到主题的style.css里:

1
2
3
4
#shangxia{position:absolute;top:40%;left:50%;margin-left:-520px;display:block;}
#shang{background:url(images/huadong.gif) no-repeat;position:relative;cursor:pointer;height:42px;width:32px;margin:10px 0;}
#comt{background:url(images/huadong.gif) no-repeat center -45px;position:relative;cursor:pointer;height:32px;width:32px;margin:10px 0;}
#xia{background:url(images/huadong.gif) no-repeat center -78px;position:relative;cursor:pointer;height:42px;width:32px;margin:10px 0;}

所有步骤都完成了,效果出来了吧

工作例会内容分析

2011.11.29 Posted in 笔记记录 2条评论

工作例会

医院领导及医院营销人员必看的70条箴言

2011.11.29 Posted in 笔记记录 1条评论

1、为什么民营医疗的节日促销活动越来越没有效果?主要来自于不确定性,体现在三方面:1)市场环境在变,而我们仍在刻舟求剑;2)消费者早已司空见惯;3)医院的结构困局仍然没有走出去,我们要搞清楚的不是搞不搞活动,而是我们是否具备了某种竞争优势。

2、思考惯性的力量是多么可怕,它会让我们轻易走不出去。别人用过的招,或者是自己曾经打胜仗的招,不可以轻易再重复。

3、企业发展周期不同,面临市场环境不同,资源配置不同,不能用老一种方法。活着,还是死去,这是一个问题。

Read the rest of this entry »

民营医院广告18大误区

2011.11.09 Posted in 生活娱乐 暂无评论

给小孩看的广告,成人不喜欢有什么关系?

给女人看的广告,男人不喜欢有什么关系?

给农民看的广告,城里人不喜欢有什么关系?

给俗人看的广告,高雅之士不喜欢有什么关系?

给外行看的广告,内行不喜欢有什么关系到?

Read the rest of this entry »

做好SEO,每天坚持六件事

2011.11.02 Posted in 网站优化 6条评论

seo并不但是几个简单的秘诀或者简单发发外链就可以的,做一个合格的seoer你首先你需要调整好自己的心态,因为心态调整好了做起来就不会那么烦躁,seo本来就是一份既苦又乏味的工作。言归正传在这里简单的谈谈自己做seo的一点经验。

一个新站给seoer你要学会做六件事:

一、新站的一个网站架构分析以及链接分析。
二、网站关键词的分析和合作敌手的分析。
三、seoer要对网站流量以及访问来路都要进行分析。
四、seoer还要对网站目录以及网站的页面优化做好分析记录。
五、立式多级离心泵专业的软文撰写,选择好的外链发布平台。
六、seoer要学会和同行进行交流,一份分享十份收获。

CSS实现半透明div层

2011.10.24 Posted in 笔记记录 暂无评论
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#div1 { margin:0px auto; width:500px; height:370px ; text-align:center;background:url(/jscss/demoimg/wall3.jpg);}
#div2 { height:330px; filter:alpha(Opacity=80);-moz-opacity:0.5;opacity: 0.5;z-index:100; background-color:#ffffff; }
<div id="div1">
<div id="div2">这里是透明的DIV</div>
</div>
<p style=border-style:none>无边框</p>
<p style=border-style:dotted>点线式边框</p>
<p style=border-style:dashed>破折线式边框</p>
<p style=border-style:solid>直线式边框</p>
<p style=border-style:double>双线式边框</p>
<p style=border-style:groove>槽线式边框</p>
<p style=border-style:ridge>脊线式边框</p>
<p style=border-style:inset>内嵌效果的边框</p>
<p style=border-style:outset>突起效果的边框</p>

西城男孩westlife解散声明

2011.10.21 Posted in 生活娱乐 暂无评论

2011102016220536.jpg

西城男孩宣布解散

In a statement posted on their website, they said: "We today announce our plan to go our separate ways after a greatest hits collection this Christmas and a farewell tour next year。

西城男孩在其官网发表声明,“今天我们宣布,在今年圣诞的精选集及明年的告别巡演后,我们将解散。”


Read the rest of this entry »