<?php
namespace PHPFUI;
class Sticky extends \PHPFUI\HTML5Element
{
public function __construct(\PHPFUI\HTML5Element $parent)
{
parent::__construct('div');
$this->addClass('sticky');
$this->addAttribute('data-sticky');
$parent->addAttribute('data-sticky-container');
}
public function addBottomAnchor(string $anchor) : static
{
$this->setAttribute('data-btm-anchor', "{$anchor}:top");
return $this;
}
public function addTopAnchor(string $anchor) : static
{
$this->setAttribute('data-top-anchor', "{$anchor}:top");
return $this;
}
}