1.怎么自己来设计自己的往上首页风格那?也就是说我想自己DIY我的页面?
2.淘宝HTML自动切换有123那些的就是鼠标移到到1就切换到第一次图(必须HTML代码)
怎么自己来设计自己的首页风格那?也就是说我想自己DIY我的页面?
设计个人首页风格时,关键在于自定义背景模板和元素。翻图通过以下CSS代码,片源你可以精准控制不同区域的码往shs考试系统源码背景效果,为页面增添个性化的上翻视觉风格。 在理解代码前,图片确保已安装并熟悉CSS基础知识。源码以下是往上代码的分解解析: 页面大背景(body):控制整个页面的背景样式。指定背景的翻图URL和重复模式。 题图上背景(logo)和 题图下背景(banner):分别定义博客logo和标题区域的片源背景,设置重复模式为“no-repeat”以确保不重复显示。码往A站源码下载 题图下的上翻菜单背景:为导航菜单区域设置背景,同样使用“no-repeat”确保不重复。图片 正文标题栏上翻时的源码和 面板标题栏下翻时的:分别为文章标题栏和面板标题栏的上翻和下翻状态设置背景。 面板的往上背景:为面板内(如文章列表)的背景设定,确保风格统一。资源app源码下载 为了确保代码正确加载,请按照以下步骤操作: 访问博客后台,选择“个人首页维护”。 点击“自定义空白面板”,选择已有模块。图纸展示网站源码 在“显示源代码”前打勾,将上述代码粘贴进去,确保已正确加载。 如果你使用的是新增面板,可以先复制上述代码,跳转整蛊源码然后在新增面板的代码区域粘贴。确保在粘贴代码前添加任意字符,以区分不同代码块。 以上步骤仅适用于Sina Blog平台,对于其他博客平台,CSS代码可能略有差异。记得将文本部分替换为实际的URL地址,并确保这些是网络可访问的链接。 通过调整代码中的URL和CSS属性,可以轻松实现个性化首页设计。希望这能帮助你创建一个独一无二、风格鲜明的博客首页。淘宝HTML自动切换有那些的就是鼠标移到到1就切换到第一次图(必须HTML代码)
第一种:
把如下代码加入<body>区域中
<body onclick=Clicked()>
<SCRIPT>
<!--
transeffect = 0;
theeffects = new Array();
theeffects[0] = “盒状收缩“;
theeffects[1] = “盒状向外“;
theeffects[2] = “圆形收缩“;
theeffects[3] = “圆形向内“;
theeffects[4] = “从下向上“;
theeffects[5] = “从上向下“;
theeffects[6] = “从左向右“;
theeffects[7] = “从右向左“;
theeffects[8] = “百页窗形向右“;
theeffects[9] = “百页窗形向下“;
theeffects[] = “棋盘形交叉向右“;
theeffects[] = “棋盘形交叉向下“;
theeffects[] = “随意溶解形“;
theeffects[] = “左右向内“;
theeffects[] = “左右向外“;
theeffects[] = “上下向内“;
theeffects[] = “上下向外“;
theeffects[] = “条纹状向左下“;
theeffects[] = “条纹状向左上“;
theeffects[] = “条纹状向右下“;
theeffects[] = “条纹状向右上“;
theeffects[] = “溶解水平状“;
theeffects[] = “溶解上下状“;
theeffects[] = “随着溶解“;
current_image = “image1“;
function Clicked() {
var the_image, the_other;
text2.style.visiblity=“hidden“;
if (image1.style.visibility==“inherit“) {
the_image = image2;
the_other = image1;
}
else {
the_image = image1;
the_other = image2;
}
the_other.style.visibility=“hidden“;
the_image.filters.item(0).Apply();
the_image.filters.item(0).Transition = transeffect;
the_image.filters.item(0).Play(2.0);
the_image.style.visibility=“inherit“;
text2.innerText=theeffects[transeffect];
transeffect++;
if (transeffect == )
transeffect = 0;
text2.style.visibility=“visible“;
}
//-->
</SCRIPT>
<DIV id=image>
<DIV id=text1></DIV><IMG id=image1
src=“Upfiles/.gif“
style=“FILTER: revealTrans(Duration=3.0,Transition=1); VISIBILITY: hidden“> <IMG id=image2 src=“Upfiles/.gif“
style=“FILTER: revealTrans(Duration=3.0,Transition=1); VISIBILITY: hidden“> </DIV>
<DIV id=text2></DIV>
第二步:把<body>中的内容改为:
<body bgcolor=“#fef4d9“ onclick=Clicked()>
over feboy
第二种:
第一步、把下面这段代码插入到页面的<head>与</head>之间:
<script language=javascript>
isns = navigator.appName == "Netscape";
function ztstr(id,picurl,linkurl)
{
this.id=id
this.picurl=picurl
this.linkurl=linkurl
}
zhuanti=new Array()
imgcount=1;
frequency=*;//秒
//在这里修改的路径和链接
zhuanti[1]=new ztstr('1','/banner/banner1.gif','')
zhuanti[2]=new ztstr('2','/banner/banner2.gif','')
zhuanti[3]=new ztstr('3','/banner/banner3.gif','')
zhuanti[4]=new ztstr('4','/banner/banner4.gif','')
imgcount=zhuanti.length-1
for(i=1;i<=imgcount;i++)
{
eval_r("img"+i+"=new Image()")
eval_r("img"+i+".src=zhuanti["+i+"].picurl")
}
nn=1
var rand1 = 0;
var useRand = 0;
function swapPic() {
var imgnum = zhuanti.length - 1;
do {
var randnum = Math.random();
rand1 = Math.round((imgnum - 1) * randnum) + 1;
} while (rand1 == useRand);
useRand = rand1;
// alert(useRand);
nn=useRand;
change_img();
}
function change_img()
{
eval_r('document.pic.src=img'+nn+'.src');
nn++;
if(nn>imgcount) nn=1
if(!isns)
{
pic.filters.item(0).apply()
pic.style.visibility='visible'
pic.filters.item(0).play()
setTimeout("pic.style.visibility='hidden'",frequency);
}
else
document.pic.visibility='visible'
tt=setTimeout('change_img()',frequency)
}
function pictarget()
{
tt=nn-1
if(tt<1) tt=imgcount
cururl=zhuanti[tt].linkurl
window.open(cururl);
}
function ini()
{
if(!isns)
{
spacewidth=Math.round((divmask.offsetWidth-)/2)
dmwidth=+spacewidth
dmheight=divmask.offsetHeight
totalstep=
timeout=
dmstepw=Math.round(/totalstep)
dmsteph=Math.round(dmheight/totalstep)
setTimeout('hidimg()',)
}
else swapPic()
}
function hidimg()
{
dmwidth-=dmstepw
dmheight-=dmsteph
eval_r('divmask.style.clip="rect(0,'+dmwidth+','+dmheight+',0)"')
hdrun=setTimeout('hidimg()',timeout)
if(dmwidth<=spacewidth&&dmheight<=0)
{
divmask.style.visibility='hidden'
clearTimeout(hdrun)
swapPic()
}
}
</script>
第二步、调用定义好的javascript函数,在<body>里加上以下代码:
<body onload=swapPic()>
第三步、在页面中插入和链接:
<a href=javascript :void(null) onclick='javascript :pictarget();return false;'><img src="/banner/banner1.gif" width= height= border=0 name=pic style="visibility:hidden;filter:revealtrans(duration=2.0,transition=)"></a>
好,到这里就大功告成了。另外,试试改变transition的数值,可以得到不同的转换效果哟~~