zoukankan      html  css  js  c++  java
  • jq弹窗(获取页面宽高,滚轮高度,始终居中)

    jq写一个弹窗,效果如上图所示,

    点击按钮弹窗弹出,右上角关闭。

    弹窗始终显示在页面中间,无论放大缩小窗口,滚轮滚动。

    代码如下:

    html:

    <br><br><br><br>
    <button>弹出</button>
    <div id="tanchuang">
    	<span id="close">×</span>
    </div>
    <br><br><br>
    

     js:

    $(function(){
    	//定义页面宽度,页面高度,弹窗位置left,弹窗位置top,滚动条高度
    	var screenWidth,screenHeight,tcleft,tctop,scrollTop;
    	//计算弹窗位置的函数
    	tanLocation();
    	//按钮添加点击事件,调用方法show(),使弹窗div出现
    	$('button').click(function(){
    		$('#tanchuang').show();
    	})
    	//关闭按钮添加点击事件,调用方法hide(),使弹窗div消失
    	$('#close').click(function(){
    		$('#tanchuang').hide();
    	})
    	//窗口对象添加resize() 当浏览器窗口大小改变时执行。
    	$(window).resize(function(){
    		tanLocation();
    	})
    	//文档对象添加scroll() 当滚轮高度变化时执行
    	$(document).scroll(function(){
    		tanLocation();
    	})
    })
    //计算弹窗位置的函数
    function tanLocation(){
    	//获取页面宽度
    	screenWidth = $(window).width();
    	//获取页面高度
    	screenHeight = $(window).height();
    	//计算left值
    	tcleft = (screenWidth-100)/2;
    	//计算top值
    	tctop = (screenHeight-100)/2;
    	//获取滚轮高度
    	scrollTop = $(document).scrollTop();
    	//弹窗的位置样式改变
    	$('#tanchuang').css({'top':tctop+scrollTop,'left':tcleft});
    }
    
  • 相关阅读:
    python第三周练习
    python第一周作业
    SQLite3—数据库的学习—python
    python实现跳一跳辅助的实验报告
    Python——自己的第一个网页(文件的使用)
    第一次爬虫和测试
    numpy和matplotlib使用
    Python作业———预测球队比赛成绩
    PIL库的学习
    Pytho作业——Jieba库的使用和好玩的词云
  • 原文地址:https://www.cnblogs.com/SSs1995/p/9210533.html
Copyright © 2011-2022 走看看