zoukankan      html  css  js  c++  java
  • Raphael.js API之Element.id,Element.insertAfter(),Element.insertBefore(),Element.hide(),Paper.clear(),

    /*API-21*/
    Element.id
    number类型
    元素的唯一id,在你想监听某个元素的时候很有用,因为所有元素都给定格式 <module>.<action>.<id>. 对Paper.getById方法也很有用
    /*API-22*/
    Element.insertAfter()
    将当前对象插入到给定元素的后面
    /*API-23*/
    Element.insertBefore()
    将当前对象插入到给定元素的前面
    /*API-19*/
    Element.hide()
    是元素不可见
    /*API-20*/
    Element.hover(f_in,f_out,[icontext],[ocontext]);
    为悬浮元素添加添加处理事件
    参数列表:
    f_in    
        function
        当悬浮到给定元素上执行的操作
    f_out
        function
        当离开给定元素时执行的操作
    icontext
        可选参数
        Object类型
        悬浮辅助操作
    ocontext
        可选参数
        Object类型
        离开时辅助操作
    返回值:元素对象
    /*API-84*/
    Paper.clear()
    清空画布,删除画布中所有元素
    /*API-88*/
    Paper.getById(id)
    返回元素的内置id
    参数列表:
    id
        number类型
        id
    返回Raphael对象

  • 相关阅读:
    clone对象
    Windows下swoole扩展的编译安装部署
    PHP备忘录
    Linux文档的压缩与打包
    Linux系统启动过程
    Linux虚拟机安装
    MongoDB自动增长
    MongoDB固定集合(Capped Collections)
    Activating Google Cloud Storage
    Downloading the Google Cloud Storage Client Library
  • 原文地址:https://www.cnblogs.com/MedivhQ/p/3801373.html
Copyright © 2011-2022 走看看