系统通知栏

网站的浮动通知栏

1.添加样式

<!-- 浮动窗口样式css begin -->
    <style type="text/css">
        #msg_win{border:1px solid #A67901;background:#EAEAEA;width:240px;position:absolute;right:0;font-size:12px;font-family:Arial;margin:0px;display:none;overflow:hidden;z-index:99;}
        #msg_win .icos{position:absolute;top:2px;*top:0px;right:2px;z-index:9;}
        .icos a{float:left;color:#833B02;margin:1px;text-align:center;font-weight:bold;width:14px;height:22px;line-height:22px;padding:1px;text-decoration:none;font-family:webdings;}
        .icos a:hover{color:#fff;}
        #msg_title{background:#BBDEF6;border-bottom:1px solid #A67901;border-top:1px solid #FFF;border-left:1px solid #FFF;color:#000;height:25px;line-height:25px;text-indent:5px;}
        #msg_content{margin:5px;margin-right:0;width:230px;height:126px;overflow:hidden;}
    </style>
    <!-- 浮动窗口样式css end -->

2.添加js,放在页面最后

</html>
<script language="javascript">
var Message={
    set: function() {//最小化与恢复状态切换
        var set=this.minbtn.status == 1?[0,1,‘block‘,this.char[0],‘最小化‘]:[1,0,‘none‘,this.char[1],‘展开‘];
        this.minbtn.status=set[0];
        this.win.style.borderBottomWidth=set[1];
        this.content.style.display =set[2];
        this.minbtn.innerHTML =set[3]
        this.minbtn.title = set[4];
        this.win.style.top = this.getY().top;
    },
    close: function() {//关闭
        this.win.style.display = ‘none‘;
        window.onscroll = null;
    },
    setOpacity: function(x) {//设置透明度
        var v = x >= 100 ? ‘‘: ‘Alpha(opacity=‘ + x + ‘)‘;
        this.win.style.visibility = x<=0?‘hidden‘:‘visible‘;//IE有绝对或相对定位内容不随父透明度变化的bug
        this.win.style.filter = v;
        this.win.style.opacity = x / 100;
    },
    show: function() {//渐显
        clearInterval(this.timer2);
        var me = this,fx = this.fx(0, 100, 0.1),t = 0;
        this.timer2 = setInterval(function() {
            t = fx();
            me.setOpacity(t[0]);
            if (t[1] == 0) {clearInterval(me.timer2) }
        },10);
    },
    fx: function(a, b, c) {//缓冲计算
        var cMath = Math[(a - b) > 0 ? "floor": "ceil"],c = c || 0.1;
        return function() {return [a += cMath((b - a) * c), a - b]}
    },
    getY: function() {//计算移动坐标
        var d = document,b = document.body, e = document.documentElement;
        var s = Math.max(b.scrollTop, e.scrollTop);
        var h = /BackCompat/i.test(document.compatMode)?b.clientHeight:e.clientHeight;
        var h2 = this.win.offsetHeight;
        return {foot: s + h + h2 + 2+‘px‘,top: s + h - h2 - 2+‘px‘}
    },
    moveTo: function(y) {//移动动画
        clearInterval(this.timer);
        var me = this,a = parseInt(this.win.style.top)||0;
        var fx = this.fx(a, parseInt(y));
        var t = 0 ;
        this.timer = setInterval(function() {
            t = fx();
            me.win.style.top = t[0]+‘px‘;
            if (t[1] == 0) {
                clearInterval(me.timer);
                me.bind();
            }
        },10);
    },
    bind:function (){//绑定窗口滚动条与大小变化事件
        var me=this,st,rt;
        window.onscroll = function() {
            clearTimeout(st);
            clearTimeout(me.timer2);
            me.setOpacity(0);
            st = setTimeout(function() {
            me.win.style.top = me.getY().top;
            me.show();
            },600);
        };
        window.onresize = function (){
            clearTimeout(rt);
            rt = setTimeout(function() {me.win.style.top = me.getY().top},100);
        }
    },
    init: function() {//创建HTML
        function $(id) {return document.getElementById(id)};
        this.win=$(‘msg_win‘);
        var set={minbtn: ‘msg_min‘,closebtn: ‘msg_close‘,title: ‘msg_title‘,content: ‘msg_content‘};
        for (var Id in set) {this[Id] = $(set[Id])};
        var me = this;
        this.minbtn.onclick = function() {me.set();this.blur()};
        this.closebtn.onclick = function() {me.close()};
        this.char=navigator.userAgent.toLowerCase().indexOf(‘firefox‘)+1?[‘_‘,‘::‘,‘ב]:[‘0‘,‘2‘,‘r‘];//FF不支持webdings字体
        this.minbtn.innerHTML=this.char[0];
        this.closebtn.innerHTML=this.char[2];
        setTimeout(function() {//初始化最先位置
            me.win.style.display = ‘block‘;
            me.win.style.top = me.getY().foot;
            me.moveTo(me.getY().top);
        },0);
        return this;
    }
};
Message.init();
</script>
<!-- 浮动窗口js end-->

3.在body中最后加入div

<!-- 浮动窗口html代码 begin -->
    <hr>
    <div id="msg_win" style="display:block;top:490px;visibility:visible;opacity:1;">
        <div class="icos">
            <a id="msg_min" title="最小化" href="javascript:void 0">_</a><a id="msg_close" title="关闭" href="javascript:void 0">×
            </a>
        </div>
        <div id="msg_title">
            系统通知-->
        </div>
        <div id="msg_content" style="overflow:auto;height:150px;width:100%;white-space:nowrap">
            <!-- <s:property value="devRun" escape="false"/> -->
            <a href="www.baidu.com">清明节放假通知</a>
        </div>
    </div>
    <!-- 浮动窗口html代码 end -->
时间: 2024-10-17 01:05:21

系统通知栏的相关文章

Android 使用动画效果后的控件位置处理 类似系统通知栏下拉动画

Android的动画的使用,请参考.Android的动画,在设计方面,我有点不太理解,觉得这样搞很怪,因为在控件动画后,即使设置了停留在动画结束时的位置,我们也确实看到了控件停在那个位置,但其实该控件的真实位置还是在原来动画前的那里.举个例子,如果有个Button,你给它设置了动画,让它移动到其他位置,当移动完成后,你会发现,点击Button没有任何效果,而在Button原来的位置,就是动画前的位置点击,明明没有任何控件,却看到了点击Button的效果.不知道Google为什么要这样设计.解决思

android-带进度条的系统通知栏消息

效果图: 主界面只有一个按钮就不上文件了 通知栏显示所用到的布局文件content_view.xml [java] view plaincopy <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fi

WIN7系统通知栏的图标不见了的解决方法

打开注册表编辑器(regedit),定位到以下路径:HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\TrayNotify删除其中的 IconStreams 和 PastIconsStream 这两个键值,关闭注册表:打开 Windows 任务管理器(Ctrl+Shift+Esc),结束 Explorer 进程:完成后,点击“文件”-〉运行 Explorer :完

跑monkey前开启/关闭系统通知栏

@echo off cls title 别忘了跑monkey啊 :menu cls color 0A echo. echo 1.禁用systemui并重启 echo. echo 2.启用systemui并重启 echo. echo q.退出 echo. :cho set choice= set /p choice= 请选择: IF NOT "%choice%"=="" SET choice=%choice:~0,1% if /i "%choice%&quo

Android抽屉(SlidingDrawer --类似android通知栏下拉效果)

Android抽屉(SlidingDrawer)的实现发 - 红黑联盟http://www.2cto.com/kf/201301/182507.html 可动态布局的Android抽屉之基础http://blog.csdn.net/hellogv/article/details/6789698 android抽屉实现http://blog.csdn.net/wangkuifeng0118/article/details/7229200 Android 使用动画效果后的控件位置处理 类似系统通知栏

android Notification 的使用(锁定通知栏)

最近一直在研究 android ,并一边研究一边做应用.其中遇到了把程序通知常驻在 Notification 栏,并且不能被 clear 掉(就像android QQ一样)的问题.经过研究实现了其功能,现把 Notification 的使用总结如下: Notification 的使用需要导入 3 个类 1 2 3 import android.app.PendingIntent; import android.app.NotificationManager; import android.app

Android通知栏介绍与适配总结

由于历史原因,Android在发布之初对通知栏Notification的设计相当简单,而如今面对各式各样的通知栏玩法,谷歌也不得不对其进行更新迭代调整,增加新功能的同时,也在不断地改变样式,试图迎合更多人的口味.本文总结了Android通知栏的版本迭代过程,在通知栏开发过程中所遇到的各种各样的坑,以及一些解决技巧,特别的,对于大众期盼的Android 7.0的到来,通知栏又会发生怎样的改变呢?接下来一一进行介绍. Android通知栏发展历史 首先来看一张各个Android版本通知栏消息的全家福

iOS8扩展插件开发配置

一.iOS8扩展插件概述 WWDC14除了发布了OS X v10.10和switf外,iOS8.0也开始变得更加开放了.说到开放,当然要数应用扩展(App Extension)了.顾名思义,应用扩展允许开发者扩展应用的自定义功能和内容,能够让用户在使用其他应用程序时使用该项功能,从而实现各个应用程序间的功能和资源共享.可以将扩展理解为一个轻量级(nimble and lightweight)的分身. 以下为常见的三类插件: Target Type Extension point identifi

说说 PWA 和微信小程序--Progressive Web App

作者:云图图链接:https://zhuanlan.zhihu.com/p/22578965来源:知乎著作权归作者所有.商业转载请联系作者获得授权,非商业转载请注明出处. 利益相关:微信小用户,谷歌小员工 微信发布了微信小程序,虽然还在内测阶段,但是无论从技术上,还是以后要不要开发原生应用(native app)上引发了不少讨论.其实看到微信小程序的消息, 我第一时间想到的是 Google 之前推出的PWA(Progressive Web App),两者的目的是类似的(伪原生应用),但是形式却又