Jquery Implementation of the Top pop-up box special effect _ jquery-js tutorial

Source: Internet
Author: User
This article will share with you the floating pop-up layer on the top of jquery. Click the floating layer animation pop-up layer to show the animation sliding effect from the top. The effect is very good and we recommend it to you. A prompt box pops up at the top of the page created by Jq, which can be used to display the prompt information and notification information.

Html code

Jq Top pop-up boxX

Css code

body {  margin: 0;  padding: 0;}.tooltiptop {  width: 100%;  height: 50px;  margin-top:-50px;  display:none;}.tooltiptop .bg {  width: 100%;  background-color: #333;  height: 50px;  opacity: .7;  position: absolute;  margin: 0;}.tooltiptop .main {  width: 100%;  position: absolute;  margin: 0;  height: 50px;  line-height: 50px;  text-align: center;  color: #fff;}.tooltiptop .main span {  float: right;  color: #fff;  margin-right: 20px;  cursor: pointer;}

Jq code

var ToolTipTop={  Show:function(Msg){    $(".tooltiptop .main i").html(Msg);    $(".tooltiptop").css("display","block").animate({marginTop:"0px"},500);  },  Hide:function(){    $(".tooltiptop").animate({marginTop:"-50px"},500,function(){$(this).css("display","none")});  }}

I would like to share with you an example of special effects, which is also very good.

CSS

 

JS

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.