Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/izica/php-styles

inline css styles generator(conditions support)
https://github.com/izica/php-styles

css css3 generator html inline inline-css inline-styles php php6 styles

Last synced: 3 days ago
JSON representation

inline css styles generator(conditions support)

Awesome Lists containing this project

README

        

## Install
```
composer require izica/php-styles
```

## Usage
generate inline tag style
```php
$sStyles = (new PhpStylesInline())->opacity(0, $sContact == '')->render();
or
$sStyles = styles(true)->opacity(0, $sContact == '')->render();
or
$sStyles = styles()->inline->opacity(0, $sContact == '')->render();
```
insert style
```html

>
=$sContact;?>

```

generate style with class(class styles supports media query)
```php
$sClassname = (new PhpStyles())->media(0, 1024)->opacity(0, $sContact == '')->render();
or
$sClassname = styles()->media(0, 1024)->opacity(0, $sContact == '')->render();
or
$sClassname = styles()
->name('contact-images')
->media(0, 1024)
->set('display', 'flex'),
->set('align-items', 'center', $itemsCount > 4),
->set('align-items', 'flex-start', $itemsCount <= 4),
->set('color', '#ccc')
->opacity(0, $sContact == '')
->render();
```

insert style
```html


=$sContact;?>

```

## Documentation
* styles() - returns PhpStyles
* styles(true) - returns PhpStylesInline
* PhpStyles
* inline() - returns PhpStylesInline
* media(sizeFrom: number, sizeTo: number)
* set(key: string, value: string or number, condition: bool(not required)) - returns $this(if condition == false, not set)
* render(condition: bool(not required))- returns unique class name(if condition == false, returns empty string)
* opacity(value, condition(not required))
* name(className: string)
* PhpStylesInline
* set(key: string, value: string or number, condition: bool(not required)) - returns $this(if condition == false, not set)
* render(condition: bool(not required))- returns unique class name(if condition == false, returns empty string)
* opacity(value, condition(not required))