真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

jquery無縫滾動(dòng),jquery 滾動(dòng)

jquery marquee怎么無縫向左滾動(dòng)

無縫滾動(dòng):

讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對這個(gè)行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長期合作伙伴,公司提供的服務(wù)項(xiàng)目有:域名注冊、雅安服務(wù)器托管、營銷軟件、網(wǎng)站建設(shè)、西雙版納網(wǎng)站維護(hù)、網(wǎng)站推廣。

MARQUEE behavior="scroll" contenteditable="true" onstart="this.firstChild.innerHTML+=this.firstChild.innerHTML;" scrollamount="3" width="100"SPAN unselectable="on"/SPAN/MARQUEE

左右滾動(dòng):

marquee direction="right" behavior="alternate"font size=30 color="red"我會(huì)左右滾動(dòng)哦/font/marquee

基于jQuery實(shí)現(xiàn)一個(gè)marquee無縫滾動(dòng)的插件

基于jQuery,實(shí)現(xiàn)一個(gè)marquee無縫滾動(dòng)的插件,已經(jīng)發(fā)布到

git.oschina.net,演示稍后更新(更新到

)。

代碼如下:

/**

*

類庫名稱:jQuery.marquee

*

實(shí)現(xiàn)功能:基于

jquery

實(shí)現(xiàn)的

marquee

無縫滾動(dòng)插件

*

作者主頁:

*

聯(lián)系郵箱:mqycn@126.com

*

使用說明:

*

最新版本:

*/

jQuery.fn.extend({

marquee

:

function(opt,

callback){

opt

=

opt

||

{};

opt.speed

=

opt.speed

||

30;

opt.direction

=

opt.direction

||

'left';

opt.pixels

=

opt.pixels

||

2;

switch(

opt.direction

){

case

"left":

case

"right":

opt.weight

=

"width";

opt.margin

=

"margin-left";

opt.tpl

=

'tabletrtd[TABLE]/tdtd[TABLE]/td/tr/table';

break;

case

"top":

case

"bottom":

opt.weight

=

"height";

opt.margin

=

"margin-top";

opt.tpl

=

'tabletrtd[TABLE]/td/tr/trtd[TABLE]/td/tr/table';

break;

default:

throw

Error("[jQuery.marquee.js]

Options.direction

Error!");

}

switch(

opt.direction

){

case

"left":

case

"top":

opt.addon

=

-1;

break;

case

"right":

case

"bottom":

opt.addon

=

1;

break;

default:

throw

Error("[jQuery.marquee.js]

Options.direction

Error!");

}

callback

=

typeof

callback

==

"function"

?

callback

:

function(){};

//設(shè)置寬度

$(this).each(function(){

if(

this.control

){

clearInterval(this.control);

}

else

{

//如果第一次執(zhí)行,初始化代碼

$(this)

.data(opt.weight,

opt.weight

==

'width'

?

$(this).find("table").width()

:

$(this).find("table").height())

.width($(this).data(opt.weight)

*

2)

.html(opt.tpl.replace(/\[TABLE\]/ig,

$(this).html()))

.mouseover(function(){

$(this).data("pause",

true);

}).mouseout(function(){

$(this).data("pause",

false);

});

}

this.control

=

setInterval((function(){

if(

$(this).data("pause")

){

return;

}

var

_margin

=

parseInt($(this).css(opt.margin))

+

opt.addon

*

opt.pixels;

if(

opt.addon

==

-1

_margin

+

$(this).data(opt.weight)

){

_margin

=

0;

}else

if(

opt.addon

==

1,

_margin

){

console.log(_margin

0,$(this).data(opt.weight));

_margin

=

-1

*

$(this).data(opt.weight);

}

$(this).css(opt.margin,

_margin

+

"px");

callback.bind(this)();

}).bind(this),

opt.speed);

});

return

$(this);

}

});

如果在IE9以下使用,還需要在之前增加如下代碼:

/**

*

IE8插件(解決

function

不支持

bind

的問題),非原創(chuàng)

*/

if

(!Function.prototype.bind)

{

Function.prototype.bind

=

function(oThis)

{

if

(typeof

this

!==

"function")

{

throw

new

TypeError("[jQuery.marquee.ie8]

Caller

is

not

a

function");

}

var

aArgs

=

Array.prototype.slice.call(arguments,

1),

fToBind

=

this,

fNOP

=

function()

{},

fBound

=

function()

{

return

fToBind.apply(this

instanceof

fNOP

oThis

?

this

:

oThis,

aArgs.concat(Array.prototype.slice.call(arguments)));

};

fNOP.prototype

=

this.prototype;

fBound.prototype

=

new

fNOP();

return

fBound;

};

}

一共有三個(gè)可選參數(shù),一個(gè)回調(diào)方法。

direction,移動(dòng)方向:支持

左:left

右:right

上:top

下:bottom;

pixels,每次移動(dòng)的像素?cái)?shù)

speed,兩次移動(dòng)之前的間隔時(shí)間數(shù)(毫秒)

調(diào)用方法如下:

$("scroll-a").marquee();

$("scroll-b").marquee({direction:'top'});

$("scroll-c").marquee({direction:'top',pixels:2,speed:30});

$("scroll-d").marquee({direction:"top",pixels:2,speed:30},

function(){

console.log("執(zhí)行了一次");

});

以上所述是小編給大家介紹的基于jQuery實(shí)現(xiàn)一個(gè)marquee無縫滾動(dòng)的插件,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!

用jquery實(shí)現(xiàn)兩個(gè)li中的圖片并列無縫向上滾動(dòng)的代碼 沒有按鈕控制,鼠標(biāo)移上去停止?jié)L動(dòng),離開開始滾動(dòng)。

下面的使用Jquery實(shí)現(xiàn),使用的時(shí)候請引用Jquery.js,向上滾動(dòng)看看js那里提示修改left為up即可。

style?type="text/css"

.scrollleft{width:491px;?float:left;?padding-top:15px;}

.scrollleft?li{float:left;display:inline;width:195px;text-align:center;}

/style

script

$.fn.imgscroll?=?function(o){

var?defaults?=?{

speed:?40,

amount:?0,

width:?1,

dir:?"left"

};

o?=?$.extend(defaults,?o);

return?this.each(function(){

var?_li?=?$("li",?this);

_li.parent().parent().css({overflow:?"hidden",?position:?"relative"});?//div

_li.parent().css({margin:?"0",?padding:?"0",?overflow:?"hidden",?position:?"relative",?"list-style":?"none"});?//ul

_li.css({position:?"relative",?overflow:?"hidden"});?//li

if(o.dir?==?"left")?_li.css({float:?"left"});

//初始大小

var?_li_size?=?0;

for(var?i=0;?i_li.size();?i++)

_li_size?+=?o.dir?==?"left"???_li.eq(i).outerWidth(true)?:?_li.eq(i).outerHeight(true);

//循環(huán)所需要的元素

if(o.dir?==?"left")?_li.parent().css({width:?(_li_size*3)+"px"});

_li.parent().empty().append(_li.clone()).append(_li.clone()).append(_li.clone());

_li?=?$("li",?this);

//滾動(dòng)

var?_li_scroll?=?0;

function?goto(){

_li_scroll?+=?o.width;

if(_li_scroll??_li_size)

{

_li_scroll?=?0;

_li.parent().css(o.dir?==?"left"???{?left?:?-_li_scroll?}?:?{?top?:?-_li_scroll?});

_li_scroll?+=?o.width;

}

_li.parent().animate(o.dir?==?"left"???{?left?:?-_li_scroll?}?:?{?top?:?-_li_scroll?},?o.amount);

}

//開始

var?move?=?setInterval(function(){?goto();?},?o.speed);

_li.parent().hover(function(){

clearInterval(move);

},function(){

clearInterval(move);

move?=?setInterval(function(){?goto();?},?o.speed);

});

});

};

$(document).ready(function(){

$(".scrollleft").imgscroll({

speed:?40,????//圖片滾動(dòng)速度

amount:?0,????//圖片滾動(dòng)過渡時(shí)間

width:?1,?????//圖片滾動(dòng)步數(shù)

dir:?"left"???//?"left"?或?"up"?向左或向上滾動(dòng)

});

});

/script

div?class="scrollleft"

ul

li

a?href="#"img?src="images/img4.gif"?width="188"?height="106"?/div?class="mingcheng"該產(chǎn)品名稱/div/a

/li

li

a?href="#"img?src="images/img4.gif"?width="188"?height="106"?/div?class="mingcheng"該產(chǎn)品名稱/div/a

/li

li

a?href="#"img?src="images/img4.gif"?width="188"?height="106"?/div?class="mingcheng"該產(chǎn)品名稱/div/a

/li

li

a?href="#"img?src="images/img4.gif"?width="188"?height="106"?/div?class="mingcheng"該產(chǎn)品名稱/div/a

/li

li

a?href="#"img?src="images/img4.gif"?width="188"?height="106"?/div?class="mingcheng"該產(chǎn)品名稱/div/a

/li

li

a?href="#"img?src="images/img4.gif"?width="188"?height="106"?/div?class="mingcheng"該產(chǎn)品名稱/div/a

/li

li

a?href="#"img?src="images/img4.gif"?width="188"?height="106"?/div?class="mingcheng"該產(chǎn)品名稱/div/a

/li

li

a?href="#"img?src="images/img4.gif"?width="188"?height="106"?/div?class="mingcheng"該產(chǎn)品名稱/div/a

/li

/ul

/div

js圖片無縫滾動(dòng)的原理是什么

以垂直滾動(dòng)為例:一組圖片 控制它的滾動(dòng)條進(jìn)行滾動(dòng) 且此時(shí)對這組圖片進(jìn)行復(fù)制并添加進(jìn)原圖片組中,現(xiàn)在就有兩組圖片了。你可以想象一下,現(xiàn)在滾動(dòng)條繼續(xù)滾動(dòng),原來那組圖片最后一張圖片已經(jīng)滾至頂端且消失,復(fù)制的那組圖片的第一張跟在原圖最后一張圖片后出現(xiàn),此時(shí)你就能感覺到無縫滾動(dòng)了,而就在此刻我們將滾動(dòng)條高度設(shè)置為0(因?yàn)樗俣群芸欤圆粫?huì)出現(xiàn)停頓感),你感覺圖片就這樣一直不停的滾動(dòng)下去了。關(guān)鍵點(diǎn)在于元素的復(fù)制、添加,以及滾動(dòng)條距離的獲取和修改。網(wǎng)上代碼很多,都是基于這類構(gòu)思

jquery效果 點(diǎn)擊小圖展示大圖,下面小圖是有左右按鈕的 可循環(huán)的無縫 滾動(dòng)。 上面大圖自動(dòng)播放

網(wǎng)上這類插件非常多,無非就是自己下下來,修改下樣式就好了,其他的如動(dòng)畫輪播js是沒必要去修改的,小圖可以吧css中的按鈕改成圖片而已,沒必要自己寫哦,費(fèi)腦子,


當(dāng)前文章:jquery無縫滾動(dòng),jquery 滾動(dòng)
標(biāo)題鏈接:http://weahome.cn/article/dsihded.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部