/*! * @wcjiang/notify v2.0.11 * JS achieve the browser title flashing , scrolling, voice prompts , chrome notice. * * Copyright (c) 2018 kenny wang * http://jaywcjlove.github.io/iNotify * * Licensed under the MIT license. */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define(factory) : (global.Notify = factory()); }(this, (function () { 'use strict'; // 提醒是否添加chrome通知 if (window.Notification && window.Notification.permission !== 'granted') { window.Notification.requestPermission(); } var iconURL = ''; var repeatableEffects = ['flash', 'scroll']; var defaultNotification = { title: 'iNotify !', body: 'You have a new message.', openurl: '' }; function jsonArguments(news, olds) { for (var a in olds) { if (news[a]) { olds[a] = news[a]; } } return olds; } function isArray(value) { return Object.prototype.toString.call(value) === '[object Array]'; } function createAudio(url) { var audioElm = document.createElement('audio'); var source = void 0; if (isArray(url) && url.length > 0) { for (var i = 0; i < url.length; i++) { source = document.createElement('source'); source.src = url[i]; source.type = 'audio/' + getExtension(url[i]); audioElm.appendChild(source); } } else { audioElm.src = url; } return audioElm; } function getFavicon(setting) { var ic = document.querySelectorAll('link[rel~=shortcut]')[0]; if (!ic) { ic = changeFavicon('O', setting); } return ic; } function getExtension(fileName) { return fileName.match(/\.([^\\.]+)$/)[1]; } function changeFavicon(num, settings) { var canvas = document.createElement('canvas'); var head = document.getElementsByTagName('head')[0]; var linkTag = document.createElement('link'); var ctx = null; canvas.height = 32; canvas.width = 32; ctx = canvas.getContext('2d'); ctx.fillStyle = settings.backgroundColor; ctx.fillRect(0, 0, 32, 32); ctx.textAlign = 'center'; ctx.font = '22px "helvetica", sans-serif'; ctx.fillStyle = settings.textColor; num && ctx.fillText(num, 16, 24); // 生成到 linkTag.setAttribute('rel', 'shortcut icon'); linkTag.setAttribute('type', 'image/x-icon'); linkTag.setAttribute('id', 'new' + settings.id); linkTag.setAttribute('href', canvas.toDataURL('image/png')); iconURL = canvas.toDataURL('image/png'); return head.appendChild(linkTag); } function Notify(config) { if (config) { this.init(config); } } Notify.prototype = { init: function init(config) { if (!config) { config = {}; } this.interval = config.interval || 100; // 响应时长 this.effect = config.effect || 'flash'; // 效果 this.title = config.title || document.title; // 标题 this.message = config.message || this.title; // 原来的标题 this.onclick = config.onclick || this.onclick; // 点击事件 this.openurl = config.openurl || this.openurl; // 点击事件 this.updateFavicon = config.updateFavicon || { id: 'favicon', textColor: '#fff', backgroundColor: '#2F9A00' }; this.audio = config.audio || ''; this.favicon = getFavicon(this.updateFavicon); this.cloneFavicon = this.favicon.cloneNode(true); iconURL = config.notification && config.notification.icon ? config.notification.icon : config.icon ? config.icon : this.favicon.href; defaultNotification.icon = iconURL; this.notification = config.notification || defaultNotification; // 初始化生成声音文件节点 if (this.audio && this.audio.file) { this.setURL(this.audio.file); } return this; }, render: function render() { if (this.effect === 'flash') { document.title = this.title === document.title ? this.message : this.title; } else if (this.effect === 'scroll') { var title = this.message || document.title; if (!this.scrollTitle || !this.scrollTitle.slice(1)) { document.title = title; this.scrollTitle = title; } else { this.scrollTitle = this.scrollTitle.slice(1); document.title = this.scrollTitle; } } return this; }, // 设置标题 setTitle: function setTitle(str) { if (str === true) { if (repeatableEffects.indexOf(this.effect) >= 0) { return this.addTimer(); } } else if (str) { this.message = str; this.scrollTitle = ''; this.addTimer(); } else { this.clearTimer(); } return this; }, setURL: function setURL(url) { if (url) { if (this.audioElm) { this.audioElm.remove(); } this.audioElm = createAudio(url); document.body.appendChild(this.audioElm); } return this; }, loopPlay: function loopPlay() { this.setURL(); this.audioElm.loop = true; this.player(); return this; }, stopPlay: function stopPlay() { this.audioElm && (this.audioElm.loop = false, this.audioElm.pause()); return this; }, // 播放声音 player: function player() { if (!this.audio || !this.audio.file) { return; } if (!this.audioElm) { this.audioElm = createAudio(this.audio.file); document.body.appendChild(this.audioElm); } this.audioElm.play(); return this; }, notify: function notify(json) { var nt = this.notification; var url = json.openurl ? json.openurl : this.openurl; var onclick = json.onclick ? json.onclick : this.onclick; if (window.Notification) { if (json) { nt = jsonArguments(json, nt); } else { nt = defaultNotification; } var option = {}; option.icon = json.icon ? json.icon : iconURL; option.body = nt.body; if (json.dir) option.dir = json.dir; var n = new Notification(nt.title, option); n.onclick = function () { onclick && typeof onclick === 'function' && onclick(n); url && window.open(url); }; n.onshow = function () { json.onshow && typeof json.onshow === 'function' && json.onshow(n); }; n.onclose = function () { json.onclose && typeof json.onclose === 'function' && json.onclose(n); }; n.onerror = function () { json.onerror && typeof json.onerror === 'function' && json.onerror(n); }; this.Notifiy = n; } return this; }, // 是否许可弹框通知 isPermission: function isPermission() { return window.Notification && Notification.permission === 'granted'; }, // 设置时间间隔 setInterval: function setInterval(num) { if (num) { this.interval = num; this.addTimer(); } return this; }, // 设置网页Icon setFavicon: function setFavicon(num) { if (!num && num !== 0) { return this.faviconClear(); } var oldicon = document.getElementById('new' + this.updateFavicon.id); if (this.favicon) { this.favicon.remove(); } if (oldicon) { oldicon.remove(); } this.updateFavicon.num = num; changeFavicon(num, this.updateFavicon); return this; }, // 设置 Favicon 文字颜色 setFaviconColor: function setFaviconColor(color) { if (color) { this.faviconRemove(); this.updateFavicon.textColor = color; changeFavicon(this.updateFavicon.num, this.updateFavicon); } return this; }, // 设置 Favicon 背景颜色 setFaviconBackgroundColor: function setFaviconBackgroundColor(color) { if (color) { this.faviconRemove(); this.updateFavicon.backgroundColor = color; changeFavicon(this.updateFavicon.num, this.updateFavicon); } return this; }, faviconRemove: function faviconRemove() { this.faviconClear(); var oldicon = document.getElementById('new' + this.updateFavicon.id); if (this.favicon) { this.favicon.remove(); } if (oldicon) { oldicon.remove(); } }, // 添加计数器 addTimer: function addTimer() { this.clearTimer(); if (repeatableEffects.indexOf(this.effect) >= 0) { this.timer = setInterval(this.render.bind(this), this.interval); } return this; }, close: function close() { if (this.Notifiy) this.Notifiy.close(); }, // 清除Icon faviconClear: function faviconClear() { var newicon = document.getElementById('new' + this.updateFavicon.id); var head = document.getElementsByTagName('head')[0]; var ficon = document.querySelectorAll('link[rel~=shortcut]'); newicon && newicon.remove(); if (ficon.length > 0) { for (var i = 0; i < ficon.length; i++) { ficon[i].remove(); } } head.appendChild(this.cloneFavicon); iconURL = this.cloneFavicon.href; this.favicon = this.cloneFavicon; return this; }, // 清除计数器 clearTimer: function clearTimer() { this.timer && clearInterval(this.timer); document.title = this.title; return this; } }; return Notify; })));

notify.min.js的更多相关文章

  1. jquery.qrcode.min.js生成二维码 通过前端实现二维码生成

    主体代码: <!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <tit ...

  2. JavaScript--jquery.min.js文件

    /*! jQuery v1.12.3 | (c) jQuery Foundation | jquery.org/license */ !function(a,b){"object" ...

  3. Mvc 之System.Web.Optimization 压缩合并如何让*.min.js 脚本不再压缩

    最近项目中用到了easy ui ,但是在配置BundleConfig 的时候出现了问题,easy ui的脚本jquery.easyui.min.js 压缩后出现各种脚本错误,总是莫名其妙的 i标量错误 ...

  4. html5shiv.js and respond.min.js

    因为用到这两个插件,所以记录下来.. html5shiv:解决ie9以下浏览器对html5新增标签的不识别,并导致CSS不起作用的问题. respond.min:让不支持Css3 Media Quer ...

  5. min.js反压缩

    给个网址自己体会.. http://jsbeautifier.org/ 当需要修改min.js中的代码时,把min.js文件ctrl+c   ctrl+v扔到上面的网页里,点击beautify 即可

  6. 让IE系列支持HTML5的html5shiv.js和respond.min.js

    HTML5越来越成为主流,被广大搜索引擎所使用,但IE对HTML5的支持却常被人唾弃. 解决方案有两种: 1.为网站创建多套模板,通过程序对User-Agent的判断给不同的浏览器用户显示不同的页面, ...

  7. MyEclipse导入jquery-1.8.0.min.js等文件报错的解决方案

    1.选中报错的jquery文件例如"jquery-1.8.0.min.js". 2.右键选择 MyEclipse-->Exclude From Validation . 3. ...

  8. 项目里的jquery.min.js错误

    项目里的jquery.min.js报一系列 - Missing semicolon - Missing semicolon - Missing semicolon - Missing semicolo ...

  9. spring访问静态资源出错,No mapping found for HTTP request with URI xxx/resources/js/jquery.min.js...

    问题:spring访问静态资源出错,No mapping found for HTTP request with URI xxx/resources/js/jquery.min.js... web.x ...

随机推荐

  1. Mysql 学习笔记02

    14 mysql 的常见函数 数学函数 1 abs() 函数 ,返回绝对值 2 bin() 函数 ,返回数值的二进制数值 3 hex()函数 ,返回数值的十六进制的值 4  floor()函数 ,对小 ...

  2. c#堆与栈

    一.在讲堆栈之前,我们先看看值类型和引用类型: 1,我们看看值类型与引用类型的存储方式: 引用类型:引用类型存储在堆中.类型实例化的时候,会在堆中开辟一部分空间存储类的实例.类对象的引用还是存储在栈中 ...

  3. PHP var_dump()函数输出不完整,有省略号?解决办法

    xdebug.var_display_max_children=10240xdebug.var_display_max_data=10240xdebug.var_display_max_depth=1 ...

  4. ubuntu创建新用户

    ubuntu和windows一样,可以任意创建或者删除新的用户,windows下比较简单,ubuntu下需要使用命令,不过操作起来不是很繁琐,所以我尽量写的详细一些.  如何创建ubuntu新用户? ...

  5. NOIP-玩具谜题

    题目描述 小南有一套可爱的玩具小人,它们各有不同的职业. 有一天,这些玩具小人把小南的眼镜藏了起来.小南发现玩具小人们围成了一个圈,它们有的面朝圈内,有的面朝圈外,如下图: 这时 `singer` 告 ...

  6. STL中的二分查找

    本文转载于https://blog.csdn.net/riba2534/article/details/69240450 使用的时候注意:必须用在非递减的区间中 二分查找的原理非常简单,但写出的代码中 ...

  7. Solve Error: "errcode": 40016, "errmsg": "invalid button size hint"

    在使用微信官方给的添加自定义菜单的示例代码: { "button": [ { "name": "扫码", "sub_button& ...

  8. python语法_列表list_列表内置方法

    list 列表 a = ['kevin','alxe','gm','dql','gyx'] a[1] = 'alxe' #按照索引获取数据,索引按照0开始,第一个数据的索引为0 切片: a[1:3] ...

  9. 课堂笔记及知识点----栈和队列(2018/10/24(am))

    栈: Stack<int>  xt=new Stack<int>() ; 先进后出,后进先出,水杯结构,顺序表类似 常用方法:   .pop---->出栈,弹栈     ...

  10. 将win7 设置为 NTP服务器

    1. 修改注册表项 HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpServer Enabl ...