① 無縫貼圖怎麼做
) u5 r1 [) } p; Y
處理後拼合效果:( Z# K) ]6 \; o- O, g
% G/ A' F4 y6 d n) G. R* V2 |
) f/ q' i `+ l5 [) t
操作步驟:- S4 C9 a6 `1 S" Y; f Y( R& D
——————————————————————————————————————————————————————————————————————————————————6 o* @8 U3 Y8 y8 Q6 @1 v
第一步:新建文檔(大小隨意,這里我新建的是800X800px),背景選擇透明(便於觀察)
置入要做無縫貼圖的基本素材(當然你也可以選擇打開,使用移動工具直接拖到新建文檔亦可)
第二步:柵格化智能對象圖層(photoshop中置入的圖片均以智能對象形式存在,為了便於後續操作,我們使用了柵格化)) F, P6 R; k" N0 E/ i
7 C! G$ W2 \( b0 @0 t9 O. M$ I
) e7 h* v8 A# X# ^3 [2 E
' u# `# M# w6 C; [
第三步:如下圖,選擇素材左邊部分圖像,Ctrl+J,提取,自動生成新圖層,刪除新圖層下方相同的圖像( s1 ^8 y# I/ v: l
第四步:把提取的圖像移動到右側(在移動的時候,可按下shift鍵,保持水平)0 |8 ]6 i _9 N9 r7 h
註:和原始素材要有重合,目的為了融合圖像。
2 h p; R4 E+ V8 P8 U" }
3 k! s$ a, l0 j1 A' e; B, H
第五步:給提取圖像添加蒙版,讓二者自然融合,蒙版的使用方法不再詳述。
(在這里我選擇的是黑白漸變配合蒙版的使用)
如圖. y. c/ I9 w( @. h* P; ^; ?- V& Y
4 p Y2 y) {$ \1 c9 q
融合後
) i7 z$ i, v j1 b2 h, }
蓋印圖層(快捷鍵:ctrl+shift+alt+E)' X: x. l# L" N+ e: k3 Q: x: T5 r
# p* V7 p3 n% u* H2 u4 f N2 i
8 x8 i* f( h& g5 g
我們可以在水平方向拼合下看看效果,已經看不到痕跡。
8 d5 Y! _5 z1 T
2 \. w2 o. E8 m% j
第六步:採用同樣的方法對垂直方向採用相同的處理。5 d* Y% n6 l# } Y
7 g' R! g# Y: \+ x% p I+ A9 @0 e
如圖# A# F0 d4 v+ j2 X* M$ @3 M6 F
; ^1 a$ Z* i$ z; R
% f! P" G* f% X L% a' z
S+ Y6 Z- m: m+ f" u
$ m2 L+ |* Q5 a/ D0 u5 i- o
+ ]9 b) X& g' q. T( `
0 Y' P2 C* m7 K8 J8 z0 l
最終效果可查看最終效果圖。" y1 L9 B1 P, @. p0 p
~0 a8 R: a) ?
————————End
② 網頁製作中的圖片無縫循環
<style type="text/css">
<!--
#demo {overflow:hidden;width:740px; }
#indemo { float: left; width: 800%;}
#demo1 { float: left; }
#demo2 { float: left;margin-left:7px;}
-->
</style>
<div id="demo">
<div id="indemo">
<div id="demo1">
<a href="#"><img src="1.jpg" alt="#" /></a>
<a href="#"><img src="1.jpg" alt="#" /></a>
<a href="#"><img src="1.jpg" alt="#" /></a>
<a href="#"><img src="1.jpg" alt="#" /></a>
<a href="#"><img src="1.jpg" alt="#" /></a>
<a href="#"><img src="1.jpg" alt="#" /></a>
</div>
<div id="demo2"></div>
</div>
</div>
<script>
<!--
var speed=10; //數字越大速度越慢
var tab=document.getElementById("demo");
var tab1=document.getElementById("demo1");
var tab2=document.getElementById("demo2");
tab2.innerHTML=tab1.innerHTML;
function Marquee(){
if(tab2.offsetWidth-tab.scrollLeft<=0)
tab.scrollLeft-=tab1.offsetWidth
else{
tab.scrollLeft++;
}
}
var MyMar=setInterval(Marquee,speed);
tab.onmouseover=function() {clearInterval(MyMar)};
tab.onmouseout=function() {MyMar=setInterval(Marquee,speed)};
-->
</script>
③ 有沒有可以方便製作四方向無縫循環圖片的作圖軟體PS可以有插件做么
AI能做,不過不太簡單
④ 用html製作四張向左無縫隙循環滾動的圖片,怎麼製作,希望步驟詳細一
<!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>無標題文檔</title>
<style type="text/css">
/*圖片滾動*/
#marquee {background: #FFF;overflow:hidden;width:350px; margin:10px 11px 0 11px;}
#inmarquee {float: left;width: 800%;}
#marquee1 {float: left;}
#marquee2 {float: left;}
</style>
<script type="text/javascript">
/*以下是圖片滾動區*/
var speed=20;
var tab=document.getElementById("marquee");
var tab1=document.getElementById("marquee1");
var tab2=document.getElementById("marquee2");
tab2.innerHTML=tab1.innerHTML;
function Marquee(){
if(tab2.offsetWidth-tab.scrollLeft<=0)
tab.scrollLeft-=tab1.offsetWidth//水平移動的距離和可見區域的寬度
else{
tab.scrollLeft++;
}
}
var MyMar=setInterval(Marquee,speed);
tab.onmouseover=function() {clearInterval(MyMar)};
tab.onmouseout=function() {MyMar=setInterval(Marquee,speed)};
</script>
</head>
<body>
<div class="left">
<!--圖片滾動-->
<div id="marquee">
<div id="inmarquee">
<div id="marquee1">
<a href="#"><img src="../images/13.jpg" border="0"></a>
<a href="#"><img src="../images/14.jpg" border="0"></a>
<a href="#"><img src="../images/8_03.gif" border="0"></a>
<a href="#"><img src="../images/15.jpg" border="0"></a>
</div>
<div id="marquee2">
<a href="#"><img src="../images/13.jpg" border="0"></a>
<a href="#"><img src="../images/14.jpg" border="0"></a>
<a href="#"><img src="../images/8_03.gif" border="0"></a>
<a href="#"><img src="../images/15.jpg" border="0"></a>
<!--以下代碼和marquee1是一樣的,完全可以省略-->
</div>
</div>
</div>
<script>
var speed=20;//滾動的速度
var tab=document.getElementById("marquee");
var tab1=document.getElementById("marquee1");
var tab2=document.getElementById("marquee2");
tab2.innerHTML=tab1.innerHTML;
function Marquee(){
if(tab2.offsetWidth-tab.scrollLeft<=0)
tab.scrollLeft-=tab1.offsetWidth
else{
tab.scrollLeft++;
}
}
var MyMar=setInterval(Marquee,speed);
tab.onmouseover=function() {clearInterval(MyMar)};
// clearInterval() 方法可以取消該周期性的方法調用。
tab.onmouseout=function() {MyMar=setInterval(Marquee,speed)};
</script>
<!--以上為圖片滾動-->
</body>
</html>
注意:圖片可以自己找幾張,粘貼的時候注意圖片路勁
⑤ 怎麼把一張圖片無縫的合成一張長圖
圖象,畫布大小,寬度擴大一倍。
⑥ 如何做無縫貼圖
1、打開ps中打開要處來理的圖片,選中背自景層點擊復制,此時圖層則新增了一層。
⑦ 【HTML】如何實現無縫循環的圖片滾動效果
網站中,有時為了更好的利用有限的頁面空間展示更多的內容,也為了豐富網站頁面自身的表現樣式,我們往往會用到圖片滾動的效果。想要實現這種效果,只需要在想要顯示的表格或網頁中加入以下代碼即可實現: <div id=demo style="overflow:hidden;height:100px;width:300px;"><table align=left cellpadding=0 cellspace=0 border=0><tr><td id=demo1 valign=top> <img height="150" alt="" width="200" src="/lazysite/user_space/7788/CIMG0056_縮小大小.JPG" /> <img height="150" alt="" width="200" src="/lazysite/user_space/7788/CIMG0053_縮小大小.JPG" /> <img height="150" alt="" width="200" src="/lazysite/user_space/7788/CIMG0054_縮小大小.JPG" /> <img height="150" alt="" width="200" src="/lazysite/user_space/7788/CIMG0058_縮小大小.JPG" /> <img height="200" alt="" width="150" src="/lazysite/user_space/7788/CIMG0059_縮小大小.JPG" /> <img height="150" alt="" width="200" src="/lazysite/user_space/7788/CIMG0063_縮小大小.JPG" /> <img height="150" alt="" width="200" src="/lazysite/user_space/7788/CIMG0070_縮小大小.JPG" /> <img height="150" alt="" width="200" src="/lazysite/user_space/7788/CIMG0071_縮小大小.JPG" /> <img height="150" alt="" width="200" src="/lazysite/user_space/7788/CIMG0072_縮小大小.JPG" /> //這個圖片的地址可以是相對的也可以是絕對的 </td><td id=demo2 valign=top></td></tr></table></div><script>var speed=30 demo2.innerHTML=demo1.innerHTML function Marquee(){ if(demo2.offsetWidth-demo.scrollLeft<=0) demo.scrollLeft-=demo1.offsetWidthelse{demo.scrollLeft++}}var MyMar=setInterval(Marquee,speed) demo.onmouseover=function() {clearInterval(MyMar)} demo.onmouseout=function() {MyMar=setInterval(Marquee,speed)}</script>下面,我們就上面代碼的主要部分進行分析: <div id=demo style="overflow:hidden;height:100px;width:300px;"> 這段代碼中下劃線的部分表示我們這段滾動圖片所佔用區域的大小。用戶可根據頁面的實際需要進行調節。但一般情況下至少要大於或等於圖片的高度和寬度。 <img height="150" alt="" width="200" src="/lazysite/user_space/7788/CIMG0056_縮小大小.JPG" /> 上面這段代碼是圖片的代碼。每加入一行如上代碼,那就會多出一個展示的圖片。圖片可以是一個,也可以是無數個。需要強調的是,每個圖片的高度和寬度應盡量的統一大小,主要顯示出來的效果才會更好看。 var speed=30 這行代碼是控制圖片滾動的速度。數字越小,滾動的也就越快;相反,數字越大,滾動的也就越慢。
⑧ html圖片向左無縫隙循環滾動代碼
用css3實現循環滾動效果:
css:
#wrap{
width:200px;
height:150px;
border:1pxsolid#000;
position:relative;
margin:100pxauto;
overflow:hidden;
}
#list{
position:absolute;
left:0;
top:0;
margin:0;
padding:0;
animation:move12sinfinitelinear;
-webkit-animation:move12sinfinitelinear;
width:500%;
}
#listli{
list-style:none;
width:200px;
height:150px;
border:0;
float:left;
}
@-webkit-keyframesmove{
0%{
left:0;
}
100%{
left:-800px;
}
}
@keyframesmove{
0%{
left:0;
}
100%{
left:-800px;
}
}
#wrap:hover#list{
-webkit-animation-play-state:paused;/*動畫暫停播放*/
}
html:
<divid="wrap">
<ulid="list">
<li><ahref="#"><imgsrc="img/1.jpg"border="0"/></a></li>
<li><ahref="#"><imgsrc="img/2.jpg"border="0"/></a></li>
<li><ahref="#"><imgsrc="img/3.jpg"border="0"/></a></li>
<li><ahref="#"><imgsrc="img/4.jpg"border="0"/></a></li>
<li><ahref="#"><imgsrc="img/5.jpg"border="0"/></a></li>
</ul>
</div>
(8)如何製作圖片無縫循環擴展閱讀:
animation(動畫)屬性:
語法:
animation: name ration timing-function delay iteration-count direction fill-mode play-state;
參數:
1、animation-name:指定要綁定到選擇器的關鍵幀的名稱。
2、animation-ration:動畫指定需要多少秒或毫秒完成。
3、animation-timing-function:設置動畫將如何完成一個周期。
值:
linear:動畫從頭到尾的速度是相同的。
ease:默認。動畫以低速開始,然後加快,在結束前變慢。
ease-in:動畫以低速開始。
ease-out:動畫以低速結束。
ease-in-out:動畫以低速開始和結束。
cubic-bezier(n,n,n,n):在 cubic-bezier 函數中自己的值。可能的值是從 0 到 1 的數值。
4、animation-delay:設置動畫在啟動前的延遲間隔。
5、animation-iteration-count :定義動畫的播放次數。
值:
n:一個數字,定義應該播放多少次動畫。
infinite:指定動畫應該播放無限次(永遠) 。
⑨ 怎麼用PS把圖片上的圖案無限循環,要無縫拼接
幫你做了一個,你試試看。
⑩ 網頁設計時怎麼製作圖片無縫循環我是個新手,求解
<!doctypehtml>
<html>
<head>
<title>圖片輪播</title>
<metacharset="utf-8"/>
<styletype="text/css">
img{
:300px;
height:350px;
}
ul{
list-style-type:none;
border:2pxsolid#ccc;
width:300px;
height:350px;
margin:0;
padding:0;
}
li{
width:300px;
height:350px;
margin:0;
padding:0;
}
.show{
display:block;
}
.hide{
display:none;
}
</style>
<scripttype="text/javascript">
varindex=0;//循環次數,默認為0
functionstart(){
//每隔一秒執行一次function
setInterval(function(){
//將所有的li隱藏
varul=document.getElementById("phtots");
varlis=ul.getElementsByTagName("li");
for(vari=0;i<lis.length;i++){
lis[i].className="hide";
}
//將下一個li顯示
index++;
lis[index%lis.length].className="show";
},1000);
}</script>
</head>
<!--onload是頁面載入事件,表示在頁面載入後調用star()函數-->
<bodyonload="start();">
<ulid="phtots">
<liclass="show"><imgsrc="img/1.jpg"/></li>
<liclass="hide"><imgsrc="img/2.jpg"/></li>
<liclass="hide"><imgsrc="img/3.jpg"/></li>
<liclass="hide"><imgsrc="img/4.jpg"/></li>
</ul>
</body>
</html>