All Projects → siriusphp → Html

siriusphp / Html

Licence: mit
HTML helper library

Projects that are alternatives of or similar to Html

Gomponents
Declarative view components in Go, that can render to HTML5.
Stars: ✭ 49 (+512.5%)
Mutual labels:  view, component
Checkview
An animated toggling Plus/Check button for Android
Stars: ✭ 56 (+600%)
Mutual labels:  view, component
React Native Popover View
A well-tested, adaptable, lightweight <Popover> component for react-native
Stars: ✭ 191 (+2287.5%)
Mutual labels:  view, component
Modularized wan android
用玩Android学习android - 组件化 - and more.. (Retrofit + MVP + 组件化的玩Android)
Stars: ✭ 16 (+100%)
Mutual labels:  component
Lvartisan
Laravel artisan command for creating view.
Stars: ✭ 18 (+125%)
Mutual labels:  view
V Distpicker
✨ A flexible, highly available district picker for picking provinces, cities and districts of China.
Stars: ✭ 919 (+11387.5%)
Mutual labels:  component
Vuep
🎡 A component for rendering Vue components with live editor and preview.
Stars: ✭ 840 (+10400%)
Mutual labels:  component
Keen Query
Terse, cypher-esque querying for keen
Stars: ✭ 6 (-25%)
Mutual labels:  component
Formdraggerdemo
一个可在窗体内随意拖动窗体的方案
Stars: ✭ 24 (+200%)
Mutual labels:  component
Crab
JavaScript library for building user interfaces with Custom Elements, Shadow DOM and React like API
Stars: ✭ 22 (+175%)
Mutual labels:  view
Croppy
Image Cropping Library for Android
Stars: ✭ 906 (+11225%)
Mutual labels:  view
Polyfill Intl Normalizer
This component provides a fallback implementation for the Normalizer class provided by the Intl extension.
Stars: ✭ 896 (+11100%)
Mutual labels:  component
React Flex Ready
A Flexbox grid ready, easy to implement and customize
Stars: ✭ 23 (+187.5%)
Mutual labels:  component
Uuwaveview
[iOS]带有波形效果的UI控件,可自定义波形线条的数量、颜色、振幅、传播速度等各种参数。
Stars: ✭ 18 (+125%)
Mutual labels:  view
Modelassistant
Elegant library to manage the interactions between view and model in Swift
Stars: ✭ 26 (+225%)
Mutual labels:  view
Drab
Remote controlled frontend framework for Phoenix.
Stars: ✭ 833 (+10312.5%)
Mutual labels:  view
Partially useful
📑 👀 Helps identifying partials in verbose HTML source code.
Stars: ✭ 23 (+187.5%)
Mutual labels:  view
Sparkline
Lightweight React sparklines ✨ 📈
Stars: ✭ 19 (+137.5%)
Mutual labels:  component
Vue Context Api
A react-like context component api for Vue.js
Stars: ✭ 19 (+137.5%)
Mutual labels:  component
Graphview
Android GraphView is used to display data in graph structures.
Stars: ✭ 918 (+11375%)
Mutual labels:  view

Sirius HTML

Source Code Latest Version Software License Build Status Coverage Status Quality Score

Framework agnostic HTML rendering utility with an API inspired by jQuery and React.

Elevator pitch

$h = new Sirius\Html\Builder;

$h->registerTag('user-login-form', 'MyApp\Html\Components\UserLoginForm');

echo $h->make('user-login-form', ['_form_values' => $_POST]);

which will output something like

<form method="post" action="user/login" class="form form-inline">

<div class="form-control">
    <label for="email">Email/Username:</label>
    <input type="email" name="email" id="email" value="[email protected]">
</div>

<!-- the rest of the form goes here -->

</form>

Links

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].