jquery.ui.draggable中文文档

2020-05-23 06:19:44易采站长站整理

                    <type name=”整数值”>
                    </type>
                </types>
                <description><![CDATA[滚动条的敏感度.
            下面所属的鼠标指针是指在draggable控件移动过程中, 鼠标所处位置.
            鼠标指针和与draggable控件所在容器的边距离为多少的时候, 滚动条开始滚动.]]></description>
                <demos>
                    <demo>
                        <comment><![CDATA[初始化]]></comment>
                        <code><![CDATA[$(‘.selector’).draggable({ scrollSensitivity: 40 });]]></code>
                    </demo>
                    <demo>
                        <comment><![CDATA[获取属性值]]></comment>
                        <code><![CDATA[var scrollSensitivity = $(‘.selector’).draggable(‘option’, ‘scrollSensitivity’);]]></code>
                    </demo>
                    <demo>
                        <comment><![CDATA[设置属性值]]></comment>
                        <code><![CDATA[$(‘.selector’).draggable(‘option’, ‘scrollSensitivity’, 40);]]></code>