import { Component } from '@angular/core';
@Component({
selector: 'nz-demo-back-top-custom',
template: `
<nz-back-top [nzVisibilityHeight]="100" (nzOnClick)="notify()">
<ng-template
<div class="ant-back-top-inner">UP</div>
</ng-template>
</nz-back-top>
Scroll down to see the bottom-right
<strong> blue </strong>
button.
`,
styles: [`
:host ::ng-deep .ant-back-top {
bottom: 100px;
}
:host ::ng-deep .ant-back-top-inner {
height: 40px;
width: 40px;
line-height: 40px;
border-radius: 4px;
background-color:
color:
text-align: center;
font-size: 20px;
}
:host ::ng-deep strong {
color:
}
`]
})
export class NzDemoBackTopCustomComponent {
notify() {
console.log('notify');
}
}