search
HomeWeb Front-endHTML Tutorial[Transfer] div css image scrolling effect_html/css_WEB-ITnose

想必大家都注意到的不循环滚动,所以出现了很多替代脚本,或iframe或JS输出,不管怎么做,都略显麻烦。下面说一下这个相对简单的实现思路:一个设定宽度并且隐藏超出它宽度的内容的容器demo,里面放demo1和demo2,demo1是滚动内容,demo2为demo1的直接克隆,通过不断改变demo1的scrollTop或者scrollLeft达到滚动的目的,当滚动至demo1与demo2的交界处时直接跳回初始位置,因为demo1与demo2一样,所以分不出跳动的瞬间,从而达到“无缝”滚动的目的。

在原作者的基础上做了一定修改,主要还是在样式上面,将表格更换为标签。

先了解一下对象的几个的属性:

innerHTML:设置或获取位于对象起始和结束标签内的 HTML

scrollHeight: 获取对象的滚动高度。

scrollLeft:设置或获取位于对象左边界和窗口中目前可见内容的最左端之间的距离

scrollTop:设置或获取位于对象最顶端和窗口中可见内容的最顶端之间的距离

scrollWidth:获取对象的滚动宽度

offsetHeight:获取对象相对于版面或由父坐标 offsetParent 属性指定的父坐标的高度

offsetLeft:获取对象相对于版面或由 offsetParent 属性指定的父坐标的计算左侧位置

offsetTop:获取对象相对于版面或由 offsetTop 属性指定的父坐标的计算顶端位置

offsetWidth:获取对象相对于版面或由父坐标 offsetParent 属性指定的父坐标的宽度

图片上无缝滚动



向上滚动



[Transfer] div css image scrolling effect_html/css_WEB-ITnose
[Transfer] div css image scrolling effect_html/css_WEB-ITnose
[Transfer] div css image scrolling effect_html/css_WEB-ITnose
[Transfer] div css image scrolling effect_html/css_WEB-ITnose
[Transfer] div css image scrolling effect_html/css_WEB-ITnose



<script> <br /> <!-- <br /> var speed=10; //数字越大速度越慢 <br /> var tab=document.getElementById("demo"); <br /> var tab1=document.getElementById("demo1"); <br /> var tab2=document.getElementById("demo2"); <br /> tab2.innerHTML=tab1.innerHTML; //克隆demo1为demo2 <br /> function Marquee(){ <br /> if(tab2.offsetTop-tab.scrollTop<=0)//当滚动至demo1与demo2交界时 <br /> tab.scrollTop-=tab1.offsetHeight //demo跳到最顶端 <br /> else{ <br /> tab.scrollTop++ <br /> } <br /> } <br /> var MyMar=setInterval(Marquee,speed); <br /> tab. {clearInterval(MyMar)};//鼠标移上时清除定时器达到滚动停止的目的 <br /> tab. {MyMar=setInterval(Marquee,speed)};//鼠标移开时重设定时器 <br /> --> <br /> </script>
图片下无缝滚动



向下滚动



[Transfer] div css image scrolling effect_html/css_WEB-ITnose
[Transfer] div css image scrolling effect_html/css_WEB-ITnose
[Transfer] div css image scrolling effect_html/css_WEB-ITnose
[Transfer] div css image scrolling effect_html/css_WEB-ITnose
[Transfer] div css image scrolling effect_html/css_WEB-ITnose



<script> <br /> <!-- <br /> var speed=10; //数字越大速度越慢 <br /> var tab=document.getElementById("demo"); <br /> var tab1=document.getElementById("demo1"); <br /> var tab2=document.getElementById("demo2"); <br /> tab2.innerHTML=tab1.innerHTML; //克隆demo1为demo2 <br /> tab.scrollTop=tab.scrollHeight <br /> function Marquee(){ <br /> if(tab1.offsetTop-tab.scrollTop>=0)//当滚动至demo1与demo2交界时 <br /> tab.scrollTop+=tab2.offsetHeight //demo跳到最顶端 <br /> else{ <br /> tab.scrollTop-- <br /> } <br /> } <br /> var MyMar=setInterval(Marquee,speed); <br /> tab. {clearInterval(MyMar)};//鼠标移上时清除定时器达到滚动停止的目的 <br /> tab. {MyMar=setInterval(Marquee,speed)};//鼠标移开时重设定时器 <br /> --> <br /> </script>
图片左无缝滚动



向左滚动




[Transfer] div css image scrolling effect_html/css_WEB-ITnose
[Transfer] div css image scrolling effect_html/css_WEB-ITnose
[Transfer] div css image scrolling effect_html/css_WEB-ITnose
[Transfer] div css image scrolling effect_html/css_WEB-ITnose
[Transfer] div css image scrolling effect_html/css_WEB-ITnose
[Transfer] div css image scrolling effect_html/css_WEB-ITnose




<script> <br /> <!-- <br /> var speed=10; //数字越大速度越慢 <br /> var tab=document.getElementById("demo"); <br /> var tab1=document.getElementById("demo1"); <br /> var tab2=document.getElementById("demo2"); <br /> tab2.innerHTML=tab1.innerHTML; <br /> function Marquee(){ <br /> if(tab2.offsetWidth-tab.scrollLeft<=0) <br /> tab.scrollLeft-=tab1.offsetWidth <br /> else{ <br /> tab.scrollLeft ; <br /> } <br /> } <br /> var MyMar=setInterval(Marquee,speed); <br /> tab. {clearInterval(MyMar)}; <br /> tab. {MyMar=setInterval(Marquee,speed)}; <br /> --> <br /> </script>
图片右无缝滚动



向右滚动




[Transfer] div css image scrolling effect_html/css_WEB-ITnose
[Transfer] div css image scrolling effect_html/css_WEB-ITnose
[Transfer] div css image scrolling effect_html/css_WEB-ITnose
[Transfer] div css image scrolling effect_html/css_WEB-ITnose
[Transfer] div css image scrolling effect_html/css_WEB-ITnose
[Transfer] div css image scrolling effect_html/css_WEB-ITnose




<script> <br /> <!-- <br /> var speed=10; //数字越大速度越慢 <br /> var tab=document.getElementById("demo"); <br /> var tab1=document.getElementById("demo1"); <br /> var tab2=document.getElementById("demo2"); <br /> tab2.innerHTML=tab1.innerHTML; <br /> function Marquee(){ <br /> if(tab.scrollLeft<=0) <br /> tab.scrollLeft =tab2.offsetWidth <br /> else{ <br /> tab.scrollLeft-- <br /> } <br /> } <br /> var MyMar=setInterval(Marquee,speed); <br /> tab. {clearInterval(MyMar)}; <br /> tab. {MyMar=setInterval(Marquee,speed)}; <br /> --> <br /> </script>
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <iframe> tag? What are the security considerations when using it?What is the purpose of the <iframe> tag? What are the security considerations when using it?Mar 20, 2025 pm 06:05 PM

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

What is the viewport meta tag? Why is it important for responsive design?What is the viewport meta tag? Why is it important for responsive design?Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

How do I use the HTML5 <time> element to represent dates and times semantically?How do I use the HTML5 <time> element to represent dates and times semantically?Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.