jQuery Sticky Notes - jQuery即时贴插件


MIT
跨平台
JavaScript

软件简介

jQuery Sticky Notes 是一款 jQuery 基于网页的即时贴插件。如下图所示:

示例代码:

<html>  
<head>  
    <script type="text/javascript" src="jquery-1.3.2.min.js"></script>  
    <script type="text/javascript" src="jquery.ui-1.7.2.custom.min.js"></script>  
    <script type="text/javascript" src="jquery.stickynotes.js"></script>  
    <link rel="stylesheet" href="jquery.stickynotes.css" type="text/css">

    <script type="text/javascript">  
        // wait for the DOM to be loaded  
        $(document).ready(function() {  
            $('#notes').stickyNotes();  
        });  
    </script>  
</head>  
<div id="notes" style="width:800px;height:600px;">  
</div>