如上图所示为制作的标签页,我们想要实现的效果是当鼠标移到某一个标签的时候,在下面的内容区显示对应的内容,并且相应标签的颜色需要改变,如图中所示当前鼠标的位置在“标签1”上,则内容区域显示的内容为“我是内容1”,并且“标签1”的">
search
HomeWeb Front-endJS TutorialJS implements tab page effect (with css)_javascript skills

Achieved effect:
JS implements tab page effect (with css)_javascript skills
As shown in the picture above, it is the produced tab page. The effect we want to achieve is that when the mouse moves to a certain tab, the following content The corresponding content is displayed in the area, and the color of the corresponding label needs to be changed. As shown in the figure, the current mouse position is on "label 1", then the content displayed in the content area is "I am content 1", and the "label 1" The color is darker than "Tag 2" and "Tag 3". Similarly, when the mouse moves to "Tag 2" and "Tag 3", "I am content 2" and "I am content 3" are displayed. This effect is achieved by the cooperation of CSS and JS. Let’s take a look at the specific code:

First look at the HTML code:
Copy code The code is as follows:





Tab page effect



< ;/head>


  • tab 1

  • Tag 2

  • Tag 3


I am content 1< ;/div>
I am content 2

I am Content 3




The JS code implementation idea is very simple. First, register a mouseover function for each label item. When the mouse moves over any label, the code in the moveover function body will be executed. The function body code first obtains the current node, hides the originally displayed content, and then displays the content corresponding to the corresponding label based on the incoming node index. In the code, we can see that in addition to changing the node style in HTML, the setTimeout function is also used. The function of this function is to delay the execution time of the function. The delay time in the following code is 300 milliseconds, that is, when the mouse moves to the label The code is not executed immediately but delayed for 300 milliseconds. If the mouse moves out of the label area within 300 milliseconds, the code will no longer be executed.
Copy code The code is as follows:

$(document).ready(function(){
var timeoutid;
$("#tabfirst li").each(function(index){

//Each wrapped JQuery object of li will execute the code in the function
/ /index is the index value in the array composed of all li corresponding to the li currently executing this function code
//With the value of index, you can find the content area corresponding to the current label
$(this). mouseover(function(){
var liNode = $(this);
timeoutid = setTimeout(function(){
//Hide the originally displayed content
$("div.contentin" ).removeClass("contentin");
//Remove the tabin attribute from the tag that originally had the tabin attribute
$("#tabfirst li.tabin").removeClass("tabin");
// Display the content area corresponding to the current tag
$("div.contentfirst").eq(index).addClass("contentin");
//$("div.contentfirst:eq(" index " )").addClass("contentin");
//Add the tabin attribute to the current label
liNode.addClass("tabin");

},300);

}).mouseout(function(){

clearTimeout(timeoutid);
});
});
});

Except this In addition to the effect, we can also use the same principle to register a click function for each label. When each label is clicked, different pages or part of any page can be loaded in the original content area. If you are interested, you can click here to download the source code. The source code contains different functions implemented by the two different functions mentioned in the article.
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
js字符串转数组js字符串转数组Aug 03, 2023 pm 01:34 PM

js字符串转数组的方法:1、使用“split()”方法,可以根据指定的分隔符将字符串分割成数组元素;2、使用“Array.from()”方法,可以将可迭代对象或类数组对象转换成真正的数组;3、使用for循环遍历,将每个字符依次添加到数组中;4、使用“Array.split()”方法,通过调用“Array.prototype.forEach()”将一个字符串拆分成数组的快捷方式。

js中new操作符做了哪些事情js中new操作符做了哪些事情Nov 13, 2023 pm 04:05 PM

js中new操作符做了:1、创建一个空对象,这个新对象将成为函数的实例;2、将新对象的原型链接到构造函数的原型对象,这样新对象就可以访问构造函数原型对象中定义的属性和方法;3、将构造函数的作用域赋给新对象,这样新对象就可以通过this关键字来引用构造函数中的属性和方法;4、执行构造函数中的代码,构造函数中的代码将用于初始化新对象的属性和方法;5、如果构造函数中没有返回等等。

用JavaScript模拟实现打字小游戏!用JavaScript模拟实现打字小游戏!Aug 07, 2022 am 10:34 AM

这篇文章主要为大家详细介绍了js实现打字小游戏,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下。

php可以读js内部的数组吗php可以读js内部的数组吗Jul 12, 2023 pm 03:41 PM

php在特定情况下可以读js内部的数组。其方法是:1、在JavaScript中,创建一个包含需要传递给PHP的数组的变量;2、使用Ajax技术将该数组发送给PHP脚本。可以使用原生的JavaScript代码或者使用基于Ajax的JavaScript库如jQuery等;3、在PHP脚本中,接收传递过来的数组数据,并进行相应的处理即可。

如何在uniapp中实现标签页切换功能如何在uniapp中实现标签页切换功能Jul 04, 2023 pm 01:06 PM

如何在uniapp中实现标签页切换功能1.前言在移动应用开发中,标签页切换是常见且重要的功能之一。Uniapp作为一款跨平台的开发框架,可以同时开发运行在多个平台上的应用。本文将介绍如何在Uniapp中实现标签页切换功能,并提供一些示例代码供参考。2.使用uni-swiper组件Uniapp提供了uni-swiper组件,可以很方便地实现标签页切换功能。

js是什么编程语言?js是什么编程语言?May 05, 2019 am 10:22 AM

js全称JavaScript,是一种具有函数优先的轻量级,直译式、解释型或即时编译型的高级编程语言,是一种属于网络的高级脚本语言;JavaScript基于原型编程、多范式的动态脚本语言,并且支持面向对象、命令式和声明式,如函数式编程。

js原生选择器有哪些js原生选择器有哪些Oct 16, 2023 pm 03:42 PM

js原生选择器有getElementById()、getElementsByClassName()、getElementsByTagName()、querySelector()和querySelectorAll()等。详细介绍:1、getElementById()通过元素的唯一标识符来选择元素,它返回具有指定ID的元素作为结果等等。

哪些浏览器支持js的捕获事件哪些浏览器支持js的捕获事件Nov 13, 2023 pm 02:42 PM

支持js捕获事件的浏览器有“Google Chrome”、“Mozilla Firefox”、“Safari”、“Microsoft Edge”和“Opera”等等所有主流的浏览器。

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 Article

Hot Tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor