如果有未读电子邮件,如何使屏幕闪烁

时间:2013-03-16 16:55:12

标签: html css windows google-chrome firefox

当有未读电子邮件时,我正在寻找任何方法让整个屏幕闪烁红色或任何颜色。它可以用于任何电子邮件客户端。我做了很多谷歌搜索,无法找到任何东西。雷鸟的附加组件会产生一些闪烁的通知,但它只会在屏幕的右下角显得非常小。

我想到的可能是Firefox或Chrome的一些附加组件,它允许我编写可在Gmail上运行的自定义css和javascript,并使闪烁发生。 非常感谢任何想法。

我知道这不是你经常提出的问题,但是你们都很棒,而且我也不知道还有什么地方可以转。如果有一个更好的论坛可以解决这类问题,你也可以告诉我。

谢谢!

4 个答案:

答案 0 :(得分:2)

我在搜索时找到了这个程序,还没试过。但它表示,当电子邮件到达时,它可以执行外部程序。因此,您似乎可以编写一个可以执行所需任务的C#应用​​程序,并在新电子邮件到达时执行。

http://www.jsonline.nl/Content/Poppy/Poppy.htm

答案 1 :(得分:1)

抓住当前的google mail checker扩展示例(https://developer.chrome.com/extensions/samples.html)。将其转换为打包的应用程序(抓取您想要的部分),打开一个非常大的窗口并快速关闭它。这应该够了吧。可悲的是,全屏似乎不可能。但我不知道这是不是一个问题。

答案 2 :(得分:1)

我不是制作Chrome插件,而是让窗口标题闪烁或使用HTML5通知。创建一个简单页面,轮询您的IMAP Gmail以获取新邮件,并在大型iFrame中包含Gmail。如果找到新消息,则外部窗口可以发出通知。

HTML5通知http://www.html5rocks.com/en/tutorials/notifications/quick/

闪烁标题(从this采用):

var newMailBlinker = (function () {
    var oldTitle = document.title,
        msg = 'New Mail!',
        timeoutId,
        blink = function() { 
            document.title = document.title == msg ? ' ' : msg; 
        },
        clear = function() {
            clearInterval(timeoutId);
            document.title = oldTitle;
            window.onmousemove = null;
            timeoutId = null;
        };

    return function () {
        if (!timeoutId) {
            timeoutId = setInterval(blink, 1000);
            window.onmousemove = clear;
        }
    };
}());

PHP轮询Gmail IMAP (从this采用):

$t1=time();//mark time in
$tt=$t1+(60*1);//total time = t1 + n seconds

do{
    if(isset($t2)) unset($t2);//clean it at every loop cicle
    $t2=time();//mark time
    if(imap_num_msg($imap)!=0){//if there is any message (in the inbox)

        $mc=imap_check($imap);//messages check
        //var_dump($mc); die;//vardump it to see all the data it is possible to get with imap_check() and them customize it for yourself
        echo 'New messages available';

    }else echo 'No new messagens';

    sleep(rand(7,13));//Give Google server a breack
    if(!@imap_ping($imap)){//if the connection is not up
        //start the imap connection the normal way like you did at first
    }

}while($tt>$t2);//if the total time was not achivied yet, get back to the beginning of the loop

jQuery AJAX轮询到您的IMAP脚本(从this采用):

// make the AJAX request
function ajax_request() {
  $.ajax({
    url: '/path/to/gmail/imap/checkMessages.php',
    dataType: 'json',
    error: function(xhr_data) {
      // terminate the script
    },
    success: function(xhr_data) {
        console.log(xhr_data);
        if (xhr_data.status == 'No new messages') {
            setTimeout(function() { ajax_request(); }, 15000); // wait 15 seconds than call ajax request again
        } else {
            newMailBlinker(); // blink the title here for new messages
        }
    }
    contentType: 'application/json'
  });
}

显然你不会使用jQuery和PHP进行轮询。选择一个进行投票。我建议让客户端进行轮询,并在每次连接时检查一次IMAP。话虽这么说,这些片段应该让你开始:)

答案 3 :(得分:0)

假设您的父亲总是打开客户端页面,您可以编写扩展程序并使用JS操作屏幕。

你可以举例如:

  1. 在Chrome中使用gmail客户端
  2. 编写一个chrome扩展程序,用于检查新的电子邮件。您可以通过识别新的电子邮件来实现此目的。我相信gmail使用特定的css类来发送新的电子邮件。所以你的JS只需要检查那个类。

  3. 让扩展程序将页面从白色更改为红色并重新变为白色几次(或直到阅读电子邮件)。

  4. 当新电子邮件到达时,您还可以让Chrome扩展程序发出声音吗?

    我发现chrome扩展程序比FF更容易使用,特别是如果你只是要使用JS。