📜  Angular PrimeNG 滑块组件

📅  最后修改于: 2022-05-13 01:56:21.449000             🧑  作者: Mango

Angular PrimeNG 滑块组件

Angular PrimeNG 是一个开源框架,具有丰富的原生 Angular UI 组件集,可用于出色的样式,并且该框架用于非常轻松地制作响应式网站。在本文中,我们将了解如何在 Angular PrimeNG 中使用滑块组件。

特性:

  • animate:用于在点击滑动条时显示动画,为布尔数据类型,默认值为false。
  • disabled:指定元素应该被禁用,它是一个布尔数据类型,默认值为false。
  • min:用于设置最小边界值,为数字数据类型,默认值为 0。
  • max:用于设置最大边界值,为数字数据类型,默认值为 100。
  • 方向:用于设置滑块的方向,有效值为水平和垂直,为字符串数据类型,默认值为水平。
  • step:用于设置递增/递减值的因子,为数字数据类型,默认值为1。
  • range:用于指定要选取的两个边界值,为布尔数据类型,默认值为false。
  • style:用于设置元素的Inline样式,为字符串数据类型,默认值为null。
  • styleClass:用于设置元素的Style类,字符串数据类型,默认值为null。
  • ariaLabelledBy: ariaLabelledBy 属性,用于建立组件和标签之间的关系,其值应该是一个或多个元素ID,它是字符串数据类型,默认值为null。
  • tabindex:用于设置元素的跳位索引,为数字数据类型,默认为0。

事件:

  • onChange:它是一个回调,通过幻灯片更改值时触发。
  • onSlideEnd:它是在幻灯片停止时触发的回调。

造型:

  • p-slider:它是一个样式容器元素
  • p-slider-handle:它是一个样式句柄元素

创建 Angular 应用程序和模块安装:

  • 第 1 步:使用以下命令创建一个 Angular 应用程序。
ng new appname
  • 第 2 步:创建项目文件夹(即 appname)后,使用以下命令移动到该文件夹。
cd appname
  • 第 3 步:在给定目录中安装 PrimeNG。
npm install primeng --save
npm install primeicons --save

项目结构:它将如下所示。

示例 1:这是展示如何使用 Slider 组件的基本示例。  

app.component.html
PrimeNG Slider component


app.module.ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { HttpClientModule } from '@angular/common/http';
import { BrowserAnimationsModule } 
    from '@angular/platform-browser/animations';
import { AppComponent } from './app.component';
import { SliderModule } from 'primeng/slider';
import { InputTextModule } from 'primeng/inputtext';
  
@NgModule({
  imports: [
    BrowserModule,
    BrowserAnimationsModule,
    SliderModule,
    InputTextModule,
    FormsModule
  ],
  declarations: [AppComponent],
  bootstrap: [AppComponent]
})
export class AppModule {}


app.component.ts
import { Component } from '@angular/core';
  
@Component({
  selector: 'my-app',
  templateUrl: './app.component.html'
})
export class AppComponent {
  val1: number;
  val2: number;
  rangeValues: number[] = [20, 80];
}


app.component.html
Basic Slider:
  
Input Slider:
  
Step Slider:
  
Range Slider:


app.component.ts
import { Component } from '@angular/core';
  
@Component({
  selector: 'my-app',
  templateUrl: './app.component.html'
})
export class AppComponent {
  basic: number;
  
  inp: number = 50;
  
  step: number;
  
  range: number[] = [20, 80];
}


app.module.ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { BrowserAnimationsModule } 
    from '@angular/platform-browser/animations';
import { AppComponent } from './app.component';
import { SliderModule } from 'primeng/slider';
  
@NgModule({
  imports: [BrowserModule, 
              BrowserAnimationsModule, 
            SliderModule, FormsModule],
  declarations: [AppComponent],
  bootstrap: [AppComponent]
})
export class AppModule {}


app.module.ts

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { HttpClientModule } from '@angular/common/http';
import { BrowserAnimationsModule } 
    from '@angular/platform-browser/animations';
import { AppComponent } from './app.component';
import { SliderModule } from 'primeng/slider';
import { InputTextModule } from 'primeng/inputtext';
  
@NgModule({
  imports: [
    BrowserModule,
    BrowserAnimationsModule,
    SliderModule,
    InputTextModule,
    FormsModule
  ],
  declarations: [AppComponent],
  bootstrap: [AppComponent]
})
export class AppModule {}

app.component.ts

import { Component } from '@angular/core';
  
@Component({
  selector: 'my-app',
  templateUrl: './app.component.html'
})
export class AppComponent {
  val1: number;
  val2: number;
  rangeValues: number[] = [20, 80];
}

输出:

示例 2:在本示例中,我们将了解如何在滑块组件中使用 max 属性。

app.component.html

Basic Slider:
  
Input Slider:
  
Step Slider:
  
Range Slider:

app.component.ts

import { Component } from '@angular/core';
  
@Component({
  selector: 'my-app',
  templateUrl: './app.component.html'
})
export class AppComponent {
  basic: number;
  
  inp: number = 50;
  
  step: number;
  
  range: number[] = [20, 80];
}

app.module.ts

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { BrowserAnimationsModule } 
    from '@angular/platform-browser/animations';
import { AppComponent } from './app.component';
import { SliderModule } from 'primeng/slider';
  
@NgModule({
  imports: [BrowserModule, 
              BrowserAnimationsModule, 
            SliderModule, FormsModule],
  declarations: [AppComponent],
  bootstrap: [AppComponent]
})
export class AppModule {}

输出:

参考: https://primefaces.org/primeng/showcase/#/slider