Html+CSS floating advertisement strip implementation

Html+CSS floating advertisement strip implementation
1.html part

Copy code
The code is as follows:

<!DOCTYPE html>
<html>
<head>
<title>blog_floatdiv.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
<link rel="stylesheet" type="text/css" href="./css/blog_floatdiv.css">
<script type="text/javascript" src="./js/jquery-1.9.1.js"></script>
<script type="text/javascript" src="./js/blog_floatdiv.js"></script>
</head>
<body>
<div id="fdiv">
I am a floating div <img src="images/logingb.png">
</div>
Floating divs
floating div floating div floating div floating div floating div floating div floating div floating div
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
floating div floating div floating div floating div floating div floating div floating div floating div floating div
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs
Floating divs

</body>
</html>

2.css part

Copy code
The code is as follows:

#fdiv{
width:200px;
height: 500px;
background: yellow;
position: fixed;
top: 128px;
_position: absolute;
_top: expression(eval(document.documentElement.scrollTop));
}
#fdiv img{
margin-left: 190px;
margin-top: 470px;
}

3.js part

Copy code
The code is as follows:

$(function() {
$("#fdiv img").click(function(){
$("#fdiv").hide();
});
});

<<:  An article tells you how to write a Vue plugin

>>:  CSS Back to Top Code Example

Recommend

InnoDB engine redo file maintenance method

If you want to adjust the size and number of Inno...

How to align text boxes in multiple forms in HTML

The form code is as shown in the figure. The styl...

FastDFS and Nginx integration to achieve code analysis

FastDFS & Nginx Integration: The tracker is c...

js implements mouse switching pictures (without timer)

This article example shares the specific code of ...

Website Building Tutorial for Beginners: Learn to Build a Website in Ten Days

The 10-day tutorial uses the most understandable ...

How to implement draggable components in Vue

This article shares with you how to implement dra...

css3 animation ball rolling js control animation pause

CSS3 can create animations, which can replace man...

How to implement the webpage anti-copying function (with cracking method)

By right-clicking the source file, the following c...

Vue realizes the sliding cross effect of the ball

This article example shares the specific code of ...

MySQL detailed explanation of isolation level operation process (cmd)

Read uncommitted example operation process - Read...

Several ways to solve CSS style conflicts (summary)

1. Refine the selector By using combinators, the ...

The solution record of Vue failing to obtain the element for the first time

Preface The solution to the problem of not being ...