博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
node-webkit无边框窗口用纯JS实现拖动改变大小
阅读量:4916 次
发布时间:2019-06-11

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

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta charset="utf-8" />
    <title></title>
    <script src="../jquery-1.11.0.min.js"></script>
    <link href="../css/bootstrap.min.css" rel="stylesheet" />
    <link href="../css/font-awesome.min.css" rel="stylesheet" />
    <script src="../js/bootstrap.min.js"></script>
    <script>
        $(function () {
            var gui = require('nw.gui');
            var sizeFlag = true;
            var mouseDownFlag = false;
            var oldPoint = {};
            var dragEventFlag = {};
            var sizeSmall = function () {
                $("#frameBody").height(600 - 40);
                gui.Window.get().moveTo(screen.availWidth / 2 - 400, screen.availHeight / 2 - 300);
                gui.Window.get().resizeTo(800, 600);
                sizeFlag = false;
            }
            var sizeMax = function () {
                $("#frameBody").height(screen.availHeight - 40);
                gui.Window.get().moveTo(0, 0)
                gui.Window.get().resizeTo(screen.availWidth, screen.availHeight);
                sizeFlag = true;
            }
            var dragEvent = function (e) {
                if (dragEventFlag.leftTop) {
                    var a = e.pageX - oldPoint.x;
                    var b = e.pageY - oldPoint.y;
                    gui.Window.get().moveBy(a, b);
                    gui.Window.get().resizeBy(0 - a, 0 - b);
                    $("#frameBody").height($("#frameBody").height() - b);
                    $("#frameBody").width($("#frameBody").width() - a);
                    return;
                }
                if (dragEventFlag.rightBottom) {
                    var a = e.pageX - oldPoint.x;
                    var b = e.pageY - oldPoint.y;
                    gui.Window.get().resizeBy(a, b);
                    $("#frameBody").height($("#frameBody").height() + b);
                    $("#frameBody").width($("#frameBody").width() + a);
                    oldPoint.x = e.pageX;
                    oldPoint.y = e.pageY;
                    $("#a").html(a);
                    return;
                }
                if (dragEventFlag.rightTop) {
                    var a = e.pageX - oldPoint.x;
                    var b = e.pageY - oldPoint.y;
                    gui.Window.get().moveBy(0, b);
                    gui.Window.get().resizeBy(a, 0-b);
                    $("#frameBody").height($("#frameBody").height() - b);
                    $("#frameBody").width($("#frameBody").width() + a);
                    oldPoint.x = e.pageX;
                    $("#a").html(a);
                    return;
                }
                if (dragEventFlag.leftBottom) {
                    var a = e.pageX - oldPoint.x;
                    var b = e.pageY - oldPoint.y;
                    gui.Window.get().moveBy(a, 0);
                    gui.Window.get().resizeBy(0-a, b);
                    $("#frameBody").height($("#frameBody").height() + b);
                    $("#frameBody").width($("#frameBody").width() - a);
                    oldPoint.y = e.pageY;
                    $("#a").html(a);
                    return;
                }
                if (dragEventFlag.left) {
                    var a = e.pageX - oldPoint.x;
                    gui.Window.get().moveBy(a, 0);
                    gui.Window.get().resizeBy(0 - a, 0);
                    $("#a").html(a);
                }
                if (dragEventFlag.right) {
                    var a = e.pageX - oldPoint.x;
                    gui.Window.get().resizeBy(a, 0);
                    $("#a").html(a);
                    oldPoint.x = e.pageX;
                    oldPoint.y = e.pageY;
                }
                if (dragEventFlag.top) {
                    var a = e.pageY - oldPoint.y;
                    gui.Window.get().moveBy(0, a);
                    gui.Window.get().resizeBy(0, 0 - a);
                    $("#frameBody").height($("#frameBody").height() - a);
                    $("#a").html(a);
                }
                if (dragEventFlag.bottom) {
                    var a = e.pageY - oldPoint.y;
                    gui.Window.get().resizeBy(0, a);
                    $("#frameBody").height($("#frameBody").height() + a);
                    $("#a").html(a);
                    oldPoint.x = e.pageX;
                    oldPoint.y = e.pageY;
                }
            }
            $(document).mousemove(function (e) {
                if (mouseDownFlag) {
                    dragEvent(e);
                    return;
                }
                if ((e.pageX <= 4 && e.pageY <= 4) || (e.pageX >= ($(document).width() - 4) && e.pageY >= ($(document).height() - 4))) {
                    $("body").css("cursor", "nw-resize");
                    return;
                }
                if ((e.pageX >= ($(document).width() - 4) && e.pageY <= 4) || (e.pageX <= 4 && e.pageY >= ($(document).height() - 4))) {
                    $("body").css("cursor", "ne-resize");
                    return;
                }
                if (e.pageX <= 4 || e.pageX >= ($(document).width() - 4)) {
                    $("body").css("cursor", "w-resize");
                }
                else if (e.pageY <= 4 || e.pageY >= ($(document).height() - 4)) {
                    $("body").css("cursor", "s-resize");
                }
                else {
                    $("body").css("cursor", "initial");
                }
            });
            $(document).mousedown(function (e) {
                oldPoint.x = e.pageX;
                oldPoint.y = e.pageY;
                mouseDownFlag = true;
                if (e.pageX <= 4 && e.pageY <= 4) {
                    dragEventFlag.leftTop = true;
                    return;
                }
                if (e.pageX >= ($(document).width() - 4) && e.pageY >= ($(document).height() - 4)) {
                    dragEventFlag.rightBottom = true;
                    return;
                }
                if (e.pageX >= ($(document).width() - 4) && e.pageY <= 4) {
                    dragEventFlag.rightTop = true;
                    return;
                }
                if (e.pageX <= 4 && e.pageY >= ($(document).height() - 4)) {
                    dragEventFlag.leftBottom = true;
                    return;
                }
                if (oldPoint.x <= 4) {
                    dragEventFlag.left = true;
                    return;
                }
                if (oldPoint.x >= ($(document).width() - 4)) {
                    dragEventFlag.right = true;
                    return;
                }
                if (oldPoint.y <= 4) {
                    dragEventFlag.top = true;
                    return;
                }
                if (oldPoint.y >= ($(document).height() - 4)) {
                    dragEventFlag.bottom = true;
                    return;
                }
            });
            $(document).mouseup(function () {
                mouseDownFlag = false;
                dragEventFlag.leftTop = false;
                dragEventFlag.rightBottom = false;
                dragEventFlag.leftBottom = false;
                dragEventFlag.rightTop = false;
                dragEventFlag.left = false;
                dragEventFlag.right = false;
                dragEventFlag.top = false;
                dragEventFlag.bottom = false;
            });
            $("#resizeBtn").click(function () {
                if (sizeFlag) {
                    sizeSmall();
                } else {
                    sizeMax();
                }
            });
            $("#minisizeBtn").click(function () {
                gui.Window.get().minimize();
            })
            $("#devToolBtn").click(function () {
                gui.Window.get().showDevTools();
            });
            $("#refreshBtn").click(function () {
                window.location.reload();
            });
            $("#cancelBtn").click(function () {
                window.close();
            });
            $("#toolBtns i").hover(function () {
                $(this).css("color", "red");
            }, function () {
                $(this).css("color", "");
            });
            $("#closeBtn").click(function () {
                gui.Window.get().close();
            });
            sizeMax();
        });
    </script>
</head>
<body style="overflow:hidden;cursor:initial">
    <div class="panel panel-primary" style="margin: 0px; padding: 0px; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0;">
        <div class="panel-heading" style="-webkit-app-region: drag; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0;">
            <h3 class="panel-title" style="font-weight:bold;">
                UTMP
            </h3>
            <div id="toolBtns" style="float: right; margin-top: -18px; -webkit-app-region: no-drag;">
                <i id="devToolBtn" class="fa fa-puzzle-piece" style="margin:4px; cursor:pointer;"></i>
                <i id="refreshBtn" class="fa fa-refresh" style="margin:4px; cursor:pointer;"></i>
                <i id="minisizeBtn" class="fa fa-minus" style="margin:4px; cursor:pointer;"></i>
                <i id="resizeBtn" class="fa fa-retweet" style="margin: 4px; cursor: pointer;"></i>
                <i id="closeBtn" class="fa fa-times" style="margin-left: 4px; cursor: pointer;"></i>
            </div>
        </div>
        <div class="panel-body" id="frameBody" style="margin: 0px; padding:0px;">
            <span id="a"></span>
            asdfasfd
        </div>
    </div>
</body>
</html>

转载于:https://www.cnblogs.com/liulun/p/3573364.html

你可能感兴趣的文章
WPF 柱状图显示数据
查看>>
iOS 计算字符串显示宽高度
查看>>
JS上传文件、导入文件
查看>>
java 组合接口时的名字冲突
查看>>
课后作业之数组
查看>>
Laravel 引入自定义类库或第三方类库
查看>>
设计模式系列一创建型模式之(简单工厂VS工厂方法)
查看>>
严重: Exception starting filter struts2问题
查看>>
Node.js 使用angularjs取得Nodejs http服务端返回的JSON数组示例
查看>>
重装上了Fedora8自带的MySQL5.0.45,再试,告捷!!
查看>>
AI1.1-人工智能史
查看>>
Mybatis typeAliases别名
查看>>
12 将类处理为excel,再将excel处理为类(界限计划3)
查看>>
《Effective C#》读书笔记——条目24:用委托实现回调<使用C#表达设计>
查看>>
C++刷题——2802: 推断字符串是否为回文
查看>>
24 小时时间比较大小
查看>>
Java实现CORS跨域请求
查看>>
浅谈php web安全
查看>>
转载:C++运算符优先级
查看>>
《A Survey of Answer Extraction Techniques in Factoid Question Answering》Reading Notes
查看>>