当前位置: 首页 > article >正文

页面滚动下拉时,元素变为fixed浮动,上拉到顶部时恢复原状,js代码以视频示例

页面滚动下拉时,元素变为fixed浮动js代码 以视频示例
在这里插入图片描述

<style>
	video{width:100%;height:auto}
	 .div2,#float1{position:fixed;_position:absolute;
    top:45px;right:0; z-index:250;}
  button{float:right;display:block;margin:5px}
</style>
 <section id="about-page">
    <div id="float1"style="margin:0 auto;display:none">
	<button onclick="showVideo()">显示视频</button>
	</div> 	
  <div id="float2"style="margin:0 auto;background:#000;">
  <video id="myVideo" src="视频地址" controls autoplay></video>
 <button onclick="pauseVideo()">关闭视频</button>
</div> 	   
其它文章内容
</section>

<script>
//关闭开启视频
function pauseVideo() {
  var video = document.getElementById("myVideo");
  video.pause();
  $('#float2').stop().fadeOut();
  $('#float1').show();
}
function showVideo() {
  var video = document.getElementById("myVideo");
  video.play();
   $('#float2').show();
  $('#float1').stop().fadeOut();
}
 //	 滚动
	  (function(){
var oDiv=document.getElementById("float2");
//alert(document.getElementById("my-left-div").offsetWidth);
var H=0,iE6;
var Y=oDiv;
while(Y){H+=Y.offsetTop;Y=Y.offsetParent};
iE6=window.ActiveXObject&&!window.XMLHttpRequest;
if(!iE6){
window.onscroll=function()
{
var s=document.body.scrollTop||document.documentElement.scrollTop;
if(s>H){oDiv.className="div1 div2";
if(iE6){oDiv.style.top=(s-H)+"px";}}
else{oDiv.className="div1";
}
};
}
})();
</script>

http://www.kler.cn/a/500666.html

相关文章:

  • 21、Transformer Masked loss原理精讲及其PyTorch逐行实现
  • JavaScript 学习总结
  • 《分布式光纤测温:解锁楼宇安全的 “高精度密码”》
  • C语言基本知识复习浓缩版:控制语句--循环
  • 计算机网络(四)网络层
  • UML系列之Rational Rose笔记三:活动图(泳道图)
  • 2025华数杯国际赛A题完整论文讲解(含每一问python代码+数据+可视化图)
  • Scratch编程:点燃编程学习热情的火种
  • ElasticsearchJavaClient工具类分享
  • Ubuntu 磁盘修复
  • 图像处理中实现 C++ 和 Python 的高效通信——Boost.Interprocess mmap
  • 【Uniapp-Vue3】插槽Slots及具名插槽实现组件高度定制化
  • [SAP ABAP] APPEND INITIAL LINE 追加空行
  • 苍穹外卖08——(涉及接收日期格式数据、ApachePOI导出报表、sql获取top10菜品数据)
  • doris:模型注意事项
  • npm 与 pnpm:JavaScript 包管理工具的对比与选择
  • 泛目录和泛站有什么差别
  • 跳表和Mysql联合索引的最左原则和索引下推的优化
  • 禅道使用实践(2)-产品篇
  • Golang笔记——rune和byte
  • Linux 容器漏洞
  • Spark Streaming专题
  • MySQL面试题--最最最详细MySQL面试题和解答
  • React中透过render函数学习(一)——workInProgress与双缓存机制
  • 现代 CPU 的高性能架构与并发安全问题
  • 【ESP32】ESP-IDF开发 | WiFi开发 | 基站模式 + AP扫描和AP连接例程