欧美亚洲欧美中文日韩在线v日本,精品国产自在现免费,人妻丰满AV无码久久不卡,国产av最新一区

中國領(lǐng)先的網(wǎng)絡(luò)營銷服務(wù)提供商! 全國統(tǒng)一電話: 13510676752,0755-25238082  
     
首頁 百度SEO 360 SEO Google SEO 多國外貿(mào)網(wǎng)站 SEO型網(wǎng)站 SEO案例
圖片無縫滾動向上向下向左向右代碼
來源: 深圳seo

marquee圖片無縫滾動

先了解一下對象的幾個的屬性:


innerHTML:     設(shè)置或獲取位于對象起始和結(jié)束標(biāo)簽內(nèi)的 HTML


scrollHeight: 獲取對象的滾動高度。


scrollLeft:    設(shè)置或獲取位于對象左邊界和窗口中目前可見內(nèi)容的最左端之間的距離


scrollTop:     設(shè)置或獲取位于對象最頂端和窗口中可見內(nèi)容的最頂端之間的距離


scrollWidth:   獲取對象的滾動寬度


offsetHeight: 獲取對象相對于版面或由父坐標(biāo) offsetParent 屬性指定的父坐標(biāo)的高度


offsetLeft:    獲取對象相對于版面或由 offsetParent 屬性指定的父坐標(biāo)的計算左側(cè)位置


offsetTop:     獲取對象相對于版面或由 offsetTop 屬性指定的父坐標(biāo)的計算頂端位置


offsetWidth:   獲取對象相對于版面或由父坐標(biāo) offsetParent 屬性指定的父坐標(biāo)的寬度


-----------------------------------------------------------------------


圖片向上無縫滾動


<style type="text/css">

<!--

#demo {

background: #FFF;

overflow:hidden;

border: 1px dashed #CCC;

height: 100px;

text-align: center;

float: left;

}

#demo img {

border: 3px solid #F2F2F2;

display: block;

}

-->

</style>

向上滾動

<div id="demo">

<div id="demo1">

<a href="#"><img src="http://uaeqfjmrc.cn/other/link/Clear_logo.gif" border="0" /></a>

<a href="#"><img src="http://uaeqfjmrc.cn/other/link/Clear_logo.gif" border="0" /></a>

<a href="#"><img src="http://uaeqfjmrc.cn/other/link/Clear_logo.gif" border="0" /></a>

<a href="#"><img src="http://uaeqfjmrc.cn/other/link/Clear_logo.gif" border="0" /></a>

<a href="#"><img src="http://uaeqfjmrc.cn/other/link/Clear_logo.gif" border="0" /></a>

</div>

<div id="demo2"></div>

</div>


<script>

<!--

var speed=10; //數(shù)字越大速度越慢

var tab=document.getElementById("demo");

var tab1=document.getElementById("demo1");

var tab2=document.getElementById("demo2");

tab2.innerHTML=tab1.innerHTML; //克隆demo1為demo2

function Marquee(){

if(tab2.offsetTop-tab.scrollTop<=0)//當(dāng)滾動至demo1與demo2交界時

tab.scrollTop-=tab1.offsetHeight //demo跳到最頂端

else{

tab.scrollTop++

}

}

var MyMar=setInterval(Marquee,speed);

tab.onmouseover=function() {clearInterval(MyMar)};//鼠標(biāo)移上時清除定時器達(dá)到滾動停止的目的

tab.onmouseout=function() {MyMar=setInterval(Marquee,speed)};//鼠標(biāo)移開時重設(shè)定時器

-->

</script>


------------------------------------------------------------


圖片向下無縫滾動


<style type="text/css">

<!--

#demo {

background: #FFF;

overflow:hidden;

border: 1px dashed #CCC;

height: 100px;

text-align: center;

float: left;

}

#demo img {

border: 3px solid #F2F2F2;

display: block;

}

-->

</style>

向下滾動

<div id="demo">

<div id="demo1">

<a href="#"><img src="http://uaeqfjmrc.cn/other/link/Clear_logo.gif" border="0" /></a>

<a href="#"><img src="http://uaeqfjmrc.cn/other/link/Clear_logo.gif" border="0" /></a>

<a href="#"><img src="http://uaeqfjmrc.cn/other/link/Clear_logo.gif" border="0" /></a>

<a href="#"><img src="http://uaeqfjmrc.cn/other/link/Clear_logo.gif" border="0" /></a>

<a href="#"><img src="http://uaeqfjmrc.cn/other/link/Clear_logo.gif" border="0" /></a>

</div>

<div id="demo2"></div>

</div>


<script>

<!--

var speed=10; //數(shù)字越大速度越慢

var tab=document.getElementById("demo");

var tab1=document.getElementById("demo1");

var tab2=document.getElementById("demo2");

tab2.innerHTML=tab1.innerHTML; //克隆demo1為demo2

tab.scrollTop=tab.scrollHeight

function Marquee(){

if(tab1.offsetTop-tab.scrollTop>=0)//當(dāng)滾動至demo1與demo2交界時

tab.scrollTop+=tab2.offsetHeight //demo跳到最頂端

else{

tab.scrollTop--

}

}

var MyMar=setInterval(Marquee,speed);

tab.onmouseover=function() {clearInterval(MyMar)};//鼠標(biāo)移上時清除定時器達(dá)到滾動停止的目的

tab.onmouseout=function() {MyMar=setInterval(Marquee,speed)};//鼠標(biāo)移開時重設(shè)定時器

-->

</script>


--------------------------------------------------------


圖片向左無縫滾動


<style type="text/css">

<!--

#demo {

background: #FFF;

overflow:hidden;

border: 1px dashed #CCC;

width: 500px;

}

#demo img {

border: 3px solid #F2F2F2;

}

#indemo {

float: left;

width: 800%;

}

#demo1 {

float: left;

}

#demo2 {

float: left;

}

-->

</style>

向左滾動

<div id="demo">

<div id="indemo">

<div id="demo1">

<a href="#"><img src="http://uaeqfjmrc.cn/other/link/Clear_logo.gif" border="0" /></a>

<a href="#"><img src="http://uaeqfjmrc.cn/other/link/Clear_logo.gif" border="0" /></a>

<a href="#"><img src="http://uaeqfjmrc.cn/other/link/Clear_logo.gif" border="0" /></a>

<a href="#"><img src="http://uaeqfjmrc.cn/other/link/Clear_logo.gif" border="0" /></a>

<a href="#"><img src="http://uaeqfjmrc.cn/other/link/Clear_logo.gif" border="0" /></a>

<a href="#"><img src="http://uaeqfjmrc.cn/other/link/Clear_logo.gif" border="0" /></a>

</div>

<div id="demo2"></div>

</div>

</div>


<script>

<!--

var speed=10; //數(shù)字越大速度越慢

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>


------------------------------------------------------


圖片向右無縫滾動


<style type="text/css">

<!--

#demo {

background: #FFF;

overflow:hidden;

border: 1px dashed #CCC;

width: 500px;

}

#demo img {

border: 3px solid #F2F2F2;

}

#indemo {

float: left;

width: 800%;

}

#demo1 {

float: left;

}

#demo2 {

float: left;

}

-->

</style>

向右滾動

<div id="demo">

<div id="indemo">

<div id="demo1">

<a href="#"><img src="http://uaeqfjmrc.cn/other/link/Clear_logo.gif" border="0" /></a>

<a href="#"><img src="http://uaeqfjmrc.cn/other/link/Clear_logo.gif" border="0" /></a>

<a href="#"><img src="http://uaeqfjmrc.cn/other/link/Clear_logo.gif" border="0" /></a>

<a href="#"><img src="http://uaeqfjmrc.cn/other/link/Clear_logo.gif" border="0" /></a>

<a href="#"><img src="http://uaeqfjmrc.cn/other/link/Clear_logo.gif" border="0" /></a>

<a href="#"><img src="http://uaeqfjmrc.cn/other/link/Clear_logo.gif" border="0" /></a>

</div>

<div id="demo2"></div>

</div>

</div>


<script>

<!--

var speed=10; //數(shù)字越大速度越慢

var tab=document.getElementById("demo");

var tab1=document.getElementById("demo1");

var tab2=document.getElementById("demo2");

tab2.innerHTML=tab1.innerHTML;

function Marquee(){

if(tab.scrollLeft<=0)

tab.scrollLeft+=tab2.offsetWidth

else{

tab.scrollLeft--;

}

}

var MyMar=setInterval(Marquee,speed);

tab.onmouseover=function() {clearInterval(MyMar)};

tab.onmouseout=function() {MyMar=setInterval(Marquee,speed)};

-->

</script>


相關(guān)seo文章
深圳seo博客 2024/12/4
深圳seo培訓(xùn) 2024/12/4
深圳seo技術(shù) 2024/12/4
深圳seo教程 2024/12/4
深圳seo優(yōu)化服務(wù)商 2024/12/4
深圳seo推廣公司 2024/12/4
seo推廣-主動營銷最好方法,讓客戶主動找上門 2024/12/4
做網(wǎng)站,就要做營銷型網(wǎng)站 2024/12/4
為網(wǎng)站不斷跑業(yè)務(wù)的技術(shù)-seo 2024/12/4
俄不排除運行獨立網(wǎng)絡(luò)可能 2024/12/4
北京 上海 廣州 成都 杭州 武漢 重慶 南京 天津 蘇州 西安 長沙 沈陽 青島 鄭州 大連 東莞 寧波
石家莊 太原 濟(jì)南 煙臺 哈爾濱 長春 廈門 福州 泉州 無錫 南通 徐州 常州 合肥 南昌 嘉興 金華 紹興 臺州 溫州 佛山 珠海 惠州 中山 昆明 ? 貴陽 蘭州 南寧 烏魯木齊
深圳地址:深圳市南山區(qū)深南大道嘉南美地E棟19F  電話:13510676752        汕頭地址:汕頭市澄海區(qū)同益路中信金城11棟3F 電話:15815070505
 Copyright @ 2002-2024 版權(quán)所有 陽光網(wǎng)營網(wǎng) 深圳seo
在線客服

  在線客服1號
  在線客服2號
  在線客服3號
熱線電話

微信二維碼