


JQUERY method to implement fixed position expansion and closing effects in the lower right corner of the web page_jquery
The example in this article describes how JQUERY implements the expansion and closing effects at a fixed position in the lower right corner of the web page. Share it with everyone for your reference. The details are as follows:
html code:
<div class="tagbox"> <div class="tag"> <span>热门标签...</span> <ul> <li><a href='/tag/js展开收起_1.html' target="_blank">js展开收起</a></li> <li><a href='/tag/js幻灯片_1.html' target="_blank">js幻灯片</a></li> <li><a href='/tag/js特效_1.html' target="_blank">js特效</a></li> <li><a href='/tag/广告代码_1.html' target="_blank">广告代码</a></li> <li><a href='/tag/对联广告_1.html' target="_blank">对联广告</a></li> <li><a href='/tag/js弹出层_1.html' target="_blank">js弹出层</a></li> <li><a href='/tag/无缝滚动_1.html' target="_blank">无缝滚动</a></li> <li><a href='/tag/php教程_1.html' target="_blank">php教程</a></li> <li><a href='/tag/ajax实例_1.html' target="_blank">ajax实例</a></li> </ul> </div> <div class="guanbi"><a href="javascript:;" target="_blank">点击关闭</a></div> </div> <div class="zhangkai"><a href="javascript:;">热门标签</a></div> <div class="xx"></div>
css code:
<style type="text/css"> ul,li{ margin:0px; padding:0px; list-style:none;} .tagbox{ width:100px; height:auto; border:1px solid #CCCCCC; POSITION:fixed;_position:absolute; _margin-top:expression(document.documentElement.clientHeight-this.style.pixelHeight+document.documentElement.scrollTop); z-index:99; right:0px; bottom:25px; background-color:#FFFFFF; -webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} .tag{ width:80px; height:auto; padding:5px 10px;} .tag span{ width:80px; height:30px; display:block; line-height:30px; color:#006600; font-size:12px;} .tag li{ width:80px; height:24px; line-height:24px; font-size:12px; overflow:hidden;} .tag li a{ color:#336699;} .tag li a:hover{ text-decoration:underline; color: #FF0000;} .guanbi{width:100px; height:26px; background-color: #F0F0F0; line-height:26px; font-size:12px; text-align:center; -webkit-border-radius:0px 0px 5px 5px;-moz-border-radius:0px 0px 5px 5px;border-radius:0px 0px 5px 5px;} .guanbi a{ color:#666666; text-decoration:none;} .zhangkai{ width:20px; height:auto; padding:10px 5px; line-height:20px; font-size:14px; text-align:center;-webkit-border-radius:5px 0px 0px 5px;-moz-border-radius:5px 0px 0px 5px;border-radius:5px 0px 0px 5px; border:1px solid #CCCCCC; POSITION:fixed;_position:absolute; _margin-top:expression(document.documentElement.clientHeight-this.style.pixelHeight+document.documentElement.scrollTop); z-index:100; right:0px; bottom:50px; background-color:#FFFFFF; display:none;} .zhangkai a{color:#006600; text-decoration:none;} .xx{ height:1000px;} </style>
js code:
<script type="text/javascript" src="js/jquery-1.2.6.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $(".guanbi a").click(function(){ $(".tagbox").hide(); $(".zhangkai").show(); return false; }); $(".zhangkai").click(function(){ $(".zhangkai").hide(); $(".tagbox").show(500); return false; }); }); </script>
I hope this article will be helpful to everyone’s jquery programming design.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Detailed explanation of jQuery reference methods: Quick start guide

How to use PUT request method in jQuery?

How to remove the height attribute of an element with jQuery?

jQuery Tips: Quickly modify the text of all a tags on the page

Use jQuery to modify the text content of all a tags

In-depth analysis: jQuery's advantages and disadvantages

Understand the role and application scenarios of eq in jQuery

How to tell if a jQuery element has a specific attribute?
