正しく機能する次のものを使用しましたが、自動的に閉じるのではなく、閉じるボタンが必要ですか?
$(document).ready(function() { 
     $('#app').click(function() { 
         $.blockUI({ 
             theme:     true, 
             title:    'Welcome to your page', 
             message:  '<p>Please have a look..</p>', 
             timeout:   2000 
        }); 
    });    
});