Body Загрузить HTML с помощью iframe - PullRequest
0 голосов
/ 04 сентября 2018

Привет, это мой hmtl и JS. Пока я хотел бы, чтобы он обнаруживал перемещение мыши, прокрутку и стрелки в окнах iframe, так как большая часть веб-сайта находится в iframe, где я смотрел в другом месте, и все кажется чрезмерным сложно обнаружить движение.

Любая помощь будет оценена спасибо

<script type="text/javascript">
        // Set timeout variables.
        var timoutWarning = 1000; // Display warning in 1Mins.
        var timoutNow = 2000; // Timeout in 2 mins.

        var warningTimer;
        var timeoutTimer;

        // Start timers.
        function StartTimers() {
            warningTimer = setTimeout("IdleWarning()", timoutWarning);
            timeoutTimer = setTimeout("IdleTimeout()", timoutNow);
        }

        // Reset timers.
        function ResetTimers() {
            clearTimeout(warningTimer);
            clearTimeout(timeoutTimer);
            StartTimers();
            $("#timeout").dialog('close');
        }

        // Show idle timeout warning dialog.
        function IdleWarning() {
            var answer = confirm("Session About To Timeout\n\n       You will be automatically logged out.\n       Confirm to remain logged in.")
                if (answer){

                    ResetTimers();
                }
                else{
                    IdleTimeout();
                }
        }       

        // Logout the user and auto reload or use this window.open('http://www.YourPageAdress.com', '_self'); to auto load a page.
        function IdleTimeout() {
            window.open(self.location,'_top');
        }
    </script>

    <body onload="StartTimers();" onmousemove="ResetTimers();" onKeyPress="ResetTimers();"

1 Ответ

0 голосов
/ 04 сентября 2018

что-то вроде *

$(".in").on("mouseover",function(){
   $(this).css("background","blue");
});
$(".in").on("mouseout",function(){
   $(this).css("background","green");
});
.in{width:50px;height:50px;background:red;}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="in"></div>
  • и использовать несколько таких как $("selector").on("mouseover mouseout mousemove",function(){ call back });
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...