コード例 #1
0
ファイル: Jquery.php プロジェクト: bytemtek/znframework
 public function property($property = '', $attr = array())
 {
     if (!is_string($property)) {
         Error::set('Error', 'stringParameter', 'property');
         return $this;
     }
     $this->property = $property;
     $this->attr = $attr;
     $this->propertyQueue .= JQ::property($property, $attr);
     return $this;
 }
コード例 #2
0
 public function complete()
 {
     $this->attr[] = $this->func;
     $complete = JQ::property($this->property, $this->attr);
     $this->_defaultVariable();
     return $complete;
 }
コード例 #3
0
ファイル: Animate.php プロジェクト: bytemtek/znframework
 public function complete()
 {
     $attr = array();
     $animate = JQ::property('animate', array($this->attr, $this->callback, $this->_object($this->easing)));
     $this->_defaultVariable();
     return $animate;
 }
コード例 #4
0
ファイル: Event.php プロジェクト: bytemtek/znframework
 public function complete()
 {
     if (isset($this->callback)) {
         $this->params[] = $this->callback;
     }
     $event = JQ::property($this->property, $this->params);
     $this->_defaultVariable();
     return $event;
 }
コード例 #5
0
 public function complete()
 {
     $event = JQ::property($this->type, array($this->speed, $this->easing, $this->callback));
     $this->_defaultVariable();
     return $event;
 }
コード例 #6
0
ファイル: Action.php プロジェクト: znframework/znframework
 public function complete() : string
 {
     $event = \JQ::property($this->type, [$this->speed, $this->easing, $this->callback]);
     $this->_defaultVariable();
     return $event;
 }