ken/sweetanimation
Composer 安装命令:
composer require ken/sweetanimation
包简介
simple alert notifications with sweet alert and animate.css for laravel
README 文档
README
This is Flexible Notification customize from Codecourse/Notify. Thanks to Alex Garrett.
Install
Using Composer
composer require ken/sweetanimation
Add the service provider to config/app.php
Ken\Sweetanimation\Provider\SpiderServiceProvider::class,
Optionally include the Facade in config/app.php if you'd like.
'Sweet' => Ken\Sweetanimation\Facades\Sweetanimation::class,
Note, there is a animation() function available, so unless you really want to use the Facade, there's no need to include it.
Usage
Basic
From your application, call the flash method with a message and type.
animation()->flash('Welcome back!', 'success');
Within a view, you can now check if a flash message exists and output it.
@if (animation()->ready()) <div class="alert-box {{ sweet()->type() }}"> {{ animation()->message() }} </div> @endif
Notify is front-end framework agnostic, so you're free to easily implement the output however you choose.
Options
You can pass additional options to the flash method, which are then easily accessible within your view.
animation()->flash('Welcome back!', 'success', [ 'timer' => 3000, 'text' => 'It\'s really great to see you again', 'animate' => 'flash' ]);
Then, in your view.
@if (animation()->ready()) <script> swal({ title: "{!! animation()->message() !!}", text: "{!! animation()->option('text') !!}", type: "{{ animation()->type() }}", @if (animation()->option('timer')) timer: {{ animation()->option('timer') }}, showConfirmButton: false, @endif @if (animation()->option('animate')) animation: false, customClass: "animated {!! animation()->option('animate') !!}", showConfirmButton: true // optional @endif }); </script> @endif
The above example uses SweetAlert, but the flexibily of SweetAlert and Animate.css means you can easily use it with any JavaScript alert solution.
Issues and contribution
Just submit an issue or pull request through GitHub. Thanks!
统计信息
- 总下载量: 19
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-11-08