Angular 5.2.1 - slider doesn't show
See original GitHub issueHello, I was looking for a good looking slider for my project and I found this one but the slider doesn’t show and I’m not sure wheither it’s my fault or not.
app.module.ts:
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { NouisliderModule } from 'ng2-nouislider';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
NouisliderModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
app.component.css:
@import "~nouislider/distribute/nouislider.min.css";
...
app.component.html:
<nouislider [connect]="true" [min]="0" [max]="15" [(ngModel)]="inputSpeedRange"></nouislider>
app.component.ts:
public inputSpeedRange = [4, 80];
Issue Analytics
- State:
- Created 6 years ago
- Comments:9
Top Results From Across the Web
bootstrap image carousel does not work in angular
I have tried using different types of bootstrap carousel but to no avail. I saw some answers which suggested to add jQuery and...
Read more >How to fix bootstrap carousel if it loads but doesn't ... - YouTube
I was driven crazy by bootstrap for over an hour while setting up the carousel. I tried a bunch of different things with...
Read more >Getting started | Angular Material
For help getting started with a new Angular app, check out the Angular CLI. For existing apps, follow these steps to begin using...
Read more >Web Libraries in Jars - WebJars
angular -slider-prajwalkman, org.webjars, angular-slider-prajwalkman, 0.1.6 ... angular-bootstrap-show-errors, org.webjars.bower, angular-bootstrap-show- ...
Read more >Swiper Changelog
a11y: don't focus slide on slide inner elements clicks (c8e22f7), closes #6116 ... angular: pagination true should work (434a19c); angular: update value ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Do you have
FormsModule
imported inapp.module.ts
?Move
@import "~nouislider/distribute/nouislider.min.css";
to styles.css.