欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JS实现图片居中悬浮效果

程序员文章站 2022-05-07 14:11:39
这篇文章我们是用js实现一个图片悬浮的效果,在我们用鼠标下拉滚动的时候图片居中悬浮,不跟随滚动,我们先来看下效果图: 下面我们来看下所有测试过的代码: &l...

这篇文章我们是用js实现一个图片悬浮的效果,在我们用鼠标下拉滚动的时候图片居中悬浮,不跟随滚动,我们先来看下效果图:

JS实现图片居中悬浮效果

下面我们来看下所有测试过的代码:

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<style type="text/css">
.logo {
 width: 650px;
 height: 383px;
 position:fixed;
 background: url(//www.jb51.net/images/logo.gif) no-repeat;
 margin:auto;
 left:0;
 right:0;
 top:0;
 bottom:0;
}
</style>
<title>图片垂直居中不随滚动条滚动的js代码</title>
</head>
<body style="height:3000px">
<div class="logo"> </div>
<p>js图片悬浮图片效果</p>
</body>
</html>

以上就是经过效果测试的原创代码,感谢你对的支持。