wolverineo250kr/yii2-pevnev-scrollup-button

为 Yii2 框架设计的滚动按钮

v1.5 2020-02-07 12:40 UTC

This package is auto-updated.

Last update: 2024-10-01 00:10:26 UTC


README

安装

composer require "wolverineo250kr/yii2-pevnev-scrollup-button":"*"

选项


homePage - 布尔值。显示主页按钮(默认:true)
color - 字符串。按钮颜色(默认:#f2564d)
colorHover - 字符串。鼠标悬停时的按钮颜色(默认:#000)
form - 字符串。按钮形状。"square" 或 "round" 可用(默认:round)
smooth - 布尔值。鼠标悬停时的按钮过渡效果(默认:false)
faIcon - 字符串。您可以使用 fa-icons 类(例如 fa-chevron-up)。可选。

用法

将以下代码粘贴到您的视图文件中(布局文件 main.php)

基本用法
\wolverineo250kr\widgets\scrollup\ScrollUpForm::widget();

高级用法
\wolverineo250kr\widgets\scrollup\ScrollUpForm::widget([
            'homePage' => true,
            'color' => '#0e456f',
            'colorHover' => '#596c7a',
            'form' => 'square',
            'smooth' => true,
        ]);