⑴ 如何设置web背景渐变效果
网页产生渐变效果不一定非要什么FLASH其实原理非常简单,META标签中就带有动态滤镜的功能。本站的这种效果其实就是用了meta标签而没有做其他任何修改。
你可以把以下这两段加到你的HTML的META头中,再看看效果:-)
<Meta http-equiv="Page-Enter" Content="blendTrans(Duration=0.5)">
<Meta http-equiv="Page-Exit" Content="blendTrans(Duration=0.5)">
blendTrans其实就是一种动态滤镜效果,当然还有其他的方法也可以产生这种动态滤镜效果
<Meta http-equiv="Page-Enter" Content="revealTrans(ration=x, transition=y)">
<Meta http-equiv="Page-Exit" Content="revealTrans(ration=x, transition=y)">
Duration表示滤镜特效的持续时间(单位:秒)
Transition滤镜类型。表示使用哪种特效,取值为0-23。
0 矩形缩小
1 矩形扩大
2 圆形缩小
3 圆形扩大
4 下到上刷新
5 上到下刷新
6 左到右刷新
7 右到左刷新
8 竖百叶窗
9 横百叶窗
10 错位横百叶窗
11 错位竖百叶窗
12 点扩散
13 左右到中间刷新
14 中间到左右刷新
15 中间到上下
16 上下到中间
17 右下到左上
18 右上到左下
19 左上到右下
20 左下到右上
21 横条
22 竖条
23 以上22种随机选择一种
Tags: 资料存档, 有意思
⑵ 如何利用PS做出这种光泽效果
挺简单,你先复制这张图片,接着使用工具栏的矩形工具,先在左边画个范围,接着选择渐变-自己设置渐变为白色--透明,接着线渐变拉,最后不透明度减低,右边同样方法
⑶ 这种有光泽的渐变的字体用什么软件做怎么做
用photoshop里面的工具栏上有个渐变工具,然后随便选个样式,然后根据图片的颜色来选取渐变的颜色.可以添加也可以删除色取点.细微的光泽是把亮度调高的结果.
⑷ 如何设置web背景渐变效果
打版的时候做的啊
⑸ WEB网页页面背景颜色渐变设置
页面上实现渐变背景有两种方法,一种是用背景图片,一种是用代码
如果渐变是自上而下的,并且渐变的顶部还想再加幅图,如果你需要让这幅图和渐变背景色的过渡平滑自然。那么,用背景图片比较适合你的要求
把渐变部分,切成宽为1像素,高为渐变全部高度。假定存为"bg.gif"
将这个bg.gif作为网页BODY区的背景图,并且设计背景图横向重复平铺。(注意的是,不要有纵向重复)
⑹ web前端 在jquery里怎么使用渐变颜色
jquery渐变示例
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>Cycle</title>
<script type="text/javascript" src="jquery.js"></script>
<style type="text/css">
table.outTable{
width: 500px;
border-top: #037DC7 1px solid;
border-collapse: collapse;
}
.outTable td{
height: 15px;
border: #037DC7 1px solid;
border-collapse: collapse;
}
table.inTable{
border: #037DC7 0px solid;
}
.inTable td.leftSideTd{
width: 15px;
height: 100px;
line-height:100px;
border-collapse: collapse;
}
</style>
<script type="text/javascript">
var first = true;
function decrescendo(o) {
$("#td"+o).css("background-color", "#C2F7A6");
$("#td"+o).css("opacity", "1.0");
$("#td"+o).animate({opacity: 0.4}, {ration: 500});
}
function crescendo(o) {
$("#td"+o).css("background-color", "#C2F7A6");
$("#td"+o).css("opacity", "0");
$("#td"+o).animate({opacity: 1}, {ration: 500});
}
function cycle(o){
var preO = o - 1;
if(o == 1) {
preO = 14;
}
//$("#td"+preO).css("background-color", "#FFFFFF");
if(!first) {
decrescendo(preO)
}
first = false;
var nextO = o + 1;
if(o == 14) {
nextO = 1;
}
//$("#td"+o).css("background-color", "#C2F7A6");
crescendo(o)
setTimeout("cycle("+nextO+")", 300);
}
</script>
</head>
<body>
<input type="button" value="begin" onclick="cycle(1);" />
<br /><br /><br />
<div style="margin: 0 auto; align:center;">
<table class="outTable" align="center">
<tr>
<td id="td1"></td>
<td id="td2"></td>
<td id="td3"></td>
<td id="td4"></td>
</tr>
<tr>
<td colspan="2" style="border: 0px;">
<table align="left" class="inTable">
<tr>
<td id="td14" class="leftSideTd" style="border-top: 0;"></td>
</tr>
<tr>
<td id="td13" class="leftSideTd"></td>
</tr>
<tr>
<td id="td12" class="leftSideTd" style="border-bottom: 0;"></td>
</tr>
</table>
</td>
<td colspan="2" style="border: 0px;">
<table align="right" class="inTable">
<tr>
<td id="td5" class="leftSideTd" style="border-top: 0;"></td>
</tr>
<tr>
<td id="td6" class="leftSideTd"></td>
</tr>
<tr>
<td id="td7" class="leftSideTd" style="border-bottom: 0;"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td id="td11"></td>
<td id="td10"></td>
<td id="td9"></td>
<td id="td8"></td>
</tr>
</table>
</div>
</body>
</html>
⑺ 怎么设计WEB登录页面,让页面不平庸
1,先分析网站的行业的性质。
2,根据行业设定主色调。
3,多采用些透明度。大气美观。
⑻ 怎么用photoshop把颜色弄的有光泽
1、在菜单栏中打开一个素材图片。