博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
飘窗原生js效果
阅读量:6280 次
发布时间:2019-06-22

本文共 4455 字,大约阅读时间需要 14 分钟。

css:

.close {            width: 30px;            height: 20px;            background: white;            position: absolute;            right: 0;            top: 0;            z-index: 999;            font-size: 12px;            text-align: center;            line-height: 20px;            cursor: pointer;            font-family: '微软雅黑';        }

  

js:【修改了一些bug】

window.onload = function () {        /*            参数            1. 创建飘窗,填写飘窗的id;            2. 选择该飘窗是否显示,true显示,false不显示,默认为false,不显示;            3. 该飘窗的配置信息, xPos,yPos          飘窗的起始位置,默认为左上角,                               imgWidth,imgHeight   飘窗的大小,默认为w: 310,h: 200,                               href                 要跳转的链接,默认不跳转,                               imgSrc               图片的链接,默认为空。         */        var fl1 = new FloatWindow('win', true, {            xPos: 100,            yPos: 100,            href: 'http://websong.wang',            imgSrc: 'https://bpic.588ku.com/art_origin_min_pic/18/07/08/02ced7cd66e3a1341391af9ceb90ec62.jpg'        });    }    var FloatWindow = function (ele, flag, config) {        flag = flag ? true : false;        this.opt = this.extend({            xPos: 0,            yPos: 0,            imgWidth: 100,            imgHeight: 100,            href: 'javascript:void(0)',            imgSrc: '',            step: 1,            height: 0,            Hoffset: 0,            Woffset: 0,            xon: 0,            yon: 0        }, config);            var html = '' +            '' +            '' +            '' +            '
关闭
' + '
'; var div = document.createElement('div'); div.innerHTML = html; if (flag) { document.body.appendChild(div); } else { return; } if (document.querySelector('#'+ele).length <= 0) { return; } this.ele = document.querySelector('#'+ele); this.interval; this.delay = 10; this.ele.querySelector('img').style['width'] = this.opt.imgWidth + 'px'; this.ele.querySelector('img').style['height']= this.opt.imgHeight + 'px'; var _self = this; this.ele.onmouseout = function () { _self.start(); } this.ele.onmouseover = function () { _self.stop(); } this.ele.onclick = function (e) { if (e.target.className === 'close') _self.stop(); document.body.removeChild(div); } changePos = function (ele, moveCfg) { width = document.documentElement.clientWidth || document.body.clientWidth; height = document.documentElement.clientHeight || document.body.clientHeight; Hoffset = ele.offsetHeight; Woffset = ele.offsetWidth; if (moveCfg.yon) { moveCfg.yPos = moveCfg.yPos + moveCfg.step; } else { moveCfg.yPos = moveCfg.yPos - moveCfg.step; } if (moveCfg.yPos < 0) { moveCfg.yon = 1; moveCfg.yPos = 0; } if (moveCfg.yPos >= (height - Hoffset)) { moveCfg.yon = 0; moveCfg.yPos = (height - Hoffset); } if (moveCfg.xon) { moveCfg.xPos = moveCfg.xPos + moveCfg.step; } else { moveCfg.xPos = moveCfg.xPos - moveCfg.step; } if (moveCfg.xPos < 0) { moveCfg.xon = 1; moveCfg.xPos = 0; } if (moveCfg.xPos >= (width - Woffset)) { moveCfg.xon = 0; moveCfg.xPos = (width - Woffset); } ele.style.left = moveCfg.xPos + document.body.scrollLeft + "px"; ele.style.top = moveCfg.yPos + document.documentElement.scrollTop + "px"; } this.start(); } FloatWindow.prototype.start = function () { var that = this; this.ele.visibility = 'visible'; this.interval = setInterval(function () { changePos(that.ele, that.opt); }, this.delay); } FloatWindow.prototype.stop = function () { clearInterval(this.interval) } FloatWindow.prototype.extend = function (o, e) { for (var key in e) { if (e[key]) { o[key] = e[key]; } } return o; }

  

转载于:https://www.cnblogs.com/webSong/p/9371634.html

你可能感兴趣的文章
Python系语言发展综述
查看>>
新手 开博
查看>>
借助开源工具高效完成Java应用的运行分析
查看>>
163 yum
查看>>
第三章:Shiro的配置——深入浅出学Shiro细粒度权限开发框架
查看>>
80后创业的经验谈(转,朴实但实用!推荐)
查看>>
让Windows图片查看器和windows资源管理器显示WebP格式
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
vim使用点滴
查看>>
embedded linux学习中几个需要明确的概念
查看>>
mysql常用语法
查看>>
Morris ajax
查看>>
【Docker学习笔记(四)】通过Nginx镜像快速搭建静态网站
查看>>
ORA-12514: TNS: 监听程序当前无法识别连接描述符中请求的服务
查看>>
<转>云主机配置OpenStack使用spice的方法
查看>>
java jvm GC 各个区内存参数设置
查看>>
[使用帮助] PHPCMS V9内容模块PC标签调用说明
查看>>
关于FreeBSD的CVSROOT的配置
查看>>
基于RBAC权限管理
查看>>