Home > Web Front-end > JS Tutorial > body text

jQuery large image on the left, small image on the right, focus image slideshow switching code sharing_jquery

WBOY
Release: 2016-05-16 15:44:25
Original
1171 people have browsed it

This is a special effect source code for the right tab focus picture carousel animation based on jQuery. The content information of each picture can be hidden and displayed according to your own preferences. It is a cool focus picture carousel code.

The jQuery slideshow switching code for the large image on the left and the small image on the right and the focus image is as follows

---------------------Source code download View the effect---------- -------------

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jQuery左侧大图右侧小图切换代码 </title>

<link rel="stylesheet" type="text/css" href="css/index.css" media="all">

<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>

</head>

<body>
<br>
<div class="examples_body">

 <div class="examples_bg">
 
 <div class="examples_image">
 <img src="images/sample_banner1.jpg" alt="" />
 <div class="desc">
 <a href="#" class="collapse">Close Me!</a>
 <div class="block">
 <h4>脚本之家http://www.jb51.net</h4>
 <small>脚本之家发布时间</small>
 <p>脚本之家是国内专业的网站建设资源、脚本编程学习类网站,提供asp、php、asp.net、javascript、jquery、网页制作、网络编程、网站建设等编程资料。</p>
 </div> 
 </div>
 </div>
 
 <div class="mune_thumb">
 <ul>
 <li>
 <a href="images/sample_banner1.jpg"><img src="images/sample_banner1_thumb.jpg" alt="Image Name" /></a>
 <div class="block">
 <h4>脚本之家二号图片</h4>
 <small>脚本之家发布时间</small>
 <p>脚本之家是国内专业的网站建设资源、脚本编程学习类网站,提供asp、php、asp.net、javascript、jquery、网页制作、网络编程、网站建设等编程资料。</p>
 </div>
 </li>
 <li>
 <a href="images/sample_banner2.jpg"><img src="images/sample_banner2_thumb.jpg" alt="Image Name" /></a>
 <div class="block">
 <h4 class="title02">脚本之家三号图片</h4>
 <small>脚本之家发布时间</small>
 <p>脚本之家是国内专业的网站建设资源、脚本编程学习类网站,提供asp、php、asp.net、javascript、jquery、网页制作、网络编程、网站建设等编程资料。</p>
 </div>
 </li>
 <li>
 <a href="images/sample_banner3.jpg"><img src="images/sample_banner3_thumb.jpg" alt="Image Name" /></a>
 <div class="block">
 <h4 class="title03">脚本之家四号图片</h4>
 <small>脚本之家发布时间</small>
 <p>脚本之家是国内专业的网站建设资源、脚本编程学习类网站,提供asp、php、asp.net、javascript、jquery、网页制作、网络编程、网站建设等编程资料。</p>
 </div>
 </li>
 <li>
 <a href="images/sample_banner4.jpg"><img src="images/sample_banner4_thumb.jpg" alt="Image Name" /></a>
 <div class="block">
 <h4 class="title04">脚本之家五号图片</h4>
 <small>脚本之家发布时间</small>
 <p>脚本之家是国内专业的网站建设资源、脚本编程学习类网站,提供asp、php、asp.net、javascript、jquery、网页制作、网络编程、网站建设等编程资料。</p>
 </div>
 </li>
 </ul>
 </div>
 
 </div>

</div>


</body>
</html>
Copy after login

Operation renderings:

The above is a jQuery image switching special effect code with a thumbnail tab on the right to share with you. I hope you like it.

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!