• jQueryNotes仿QQ空间添加标记


    jquery-notes有以下特点:

    • 支持添加备注图像
    • 丰富的API
    • 支持标记伸缩
    • 支持更改主题
    • 支持图片标记添加链接
    • 不需要数据库

    HTML

    首先在页面上放置一张添加标志的图片

    <div class="samples-box clearfix"
        <img src="samples/sample_1.jpg  width="333" height="500" class="jquery-note_1-2" 
        /> 
    </div>

    引入jquery和jquery-notes相关组件

    <link rel="stylesheet" title="Standard" href="jquery-notes_css/style.css" 
    type="text/css" media="all" /> 
    <!--[if lte IE 8]> 
        <link rel="stylesheet" title="Standard" href="jquery-notes_css/lteIE8.css" 
        type="text/css" media="all" /> 
    <![endif]--> 
    <script type="text/javascript" src="jquery-notes_js/jquery.js"
    </script> 
    <script type="text/javascript" src="jquery-notes_js/jquery-ui.js"
    </script> 
    <script type="text/javascript" src="jquery-notes_js/jquery-notes_1.0.8.js"
    </script>

    调用jquery-notes插件

    $(function() 
        $('.jquery-note_1-2').jQueryNotes(
            minWidth: '10%', 
            minHeight: 20, 
            aspectRatio: true, 
            helper: 'helper-class', 
            allowLink: false, 
            dateFormat: 'D.M.Y', 
            operator: 'jquery-notes_php/notes.php' 
        }); 
    });
    参数 描述 默认值
    operator 远程加载列表url -
    maxNotes 最大标记数量 -
    minWidth 最小标记宽度 -
    minHeight 最小标记高度 -
    allowAdd 是否允许添加标记 -
    allowEdit 是否允许编辑标记 -
    allowDelete 是否允许删除标记 -
    allowHide 是否允许隐藏标记 -
    allowLink 是否允许添加链接 -
    loadNotes 是否加载标记 -
  • 相关阅读:
    拉格朗日插值
    [数论] hdu 5974 A Simple Math Problem (数论gcd)
    混合图欧拉回路
    上下界网络流
    HDU 6623 Minimal Power of Prime(数学)
    图的连通度
    最小点权覆盖和最大点权独立集
    最大权闭合子图(最小割,蕴含式最大获利问题)
    CodeForces Goodbye 2017
    网络流建模汇总
  • 原文地址:https://www.cnblogs.com/galal/p/6033538.html
Copyright © 2020-2023  润新知