UI工具包通知pos问题

时间:2016-12-28 11:02:10

标签: javascript getuikit

   <script>
            $(function(){

                var ws_scheme = window.location.protocol == "https:" ? "wss": "ws";
                var ws_path = ws_scheme + "://" + window.location.host + "/dashboard";
                console.log("Connecting to " + ws_path);
                var socket = new ReconnectingWebSocket(ws_path);
                socket.onmessage = function (message) {
                    // Decode the JSON
                    console.log("Got websocket message " + message.data);
                    var display = '<div class="uk-alert uk-alert-success">'+ message.data + "</div>";
                    console.log("Got websocket message " + display);
                    UIkit.notify({
                        message : display,
                        status  : 'info',
                        timeout : 0,
                        pos     : 'top-center'
                        });
                    }
            });
  </script>

对于以下代码段,UI工具包通知会在屏幕的左下角显示通知。 如果我可以将位置转移到其他possible values.

,它就不会改变 我必须做一些非常愚蠢的事情。任何帮助表示赞赏。

1 个答案:

答案 0 :(得分:1)

uikit notify中的消息只是字符串,可能使用div破坏其余部分,试图摆弄它。

通知组件也有自己的css,请务必包含它。