页面加载时的不引人注意的反馈(onload)

时间:2013-10-25 07:46:01

标签: javascript jquery user-interface user-feedback

我在页面的页脚中添加了这个脚本,一旦页面加载就会闪现页面的黑色背景:

<script>
$(document).ready(function() {
        function highlight_background(){
            if(document.getElementById('content')) {
                //fading background:
                $('#content').css({backgroundColor:"#081108"});
                $('#content').animate({backgroundColor: "black"}, 2000);
            }
         }
         highlight_background();
)}
</script>

这在我的space online game中的黑色背景上看起来很棒。

但是现在我计划在具有白色背景的我的客户的认真应用中为用户实施反馈。它看起来太有趣了。

在网页加载后,知道如何管理不引人注意的反馈吗?

1 个答案:

答案 0 :(得分:0)

改为粉红色的屏幕:

<script>
$(document).ready(function() {
    function highlight_background(){
        if(document.getElementById('content')) {
            //fading background:
            $('#content').css({backgroundColor:"#081108"});
            $('#content').animate({backgroundColor: "pink"}, 2000);
        }
     }
     highlight_background();
)}
</script>