- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在使用 ng-lottie
时用于动画。它突然出现构建问题。
Know more .
因此,为了寻找替代品,我正在尝试 ng-particles
.
我已经安装了它并按照文档添加了配置。
但是,现在我得到 Cannot find name 'GlobalCompositeOperation'
包.json
{
"name": "ngrx-poc",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --port 4202",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test"
},
"private": true,
"dependencies": {
"@angular/animations": "~13.1.0",
"@angular/common": "~13.1.0",
"@angular/compiler": "~13.1.0",
"@angular/core": "~13.1.0",
"@angular/forms": "~13.1.0",
"@angular/localize": "~13.1.0",
"@angular/platform-browser": "~13.1.0",
"@angular/platform-browser-dynamic": "~13.1.0",
"@angular/router": "~13.1.0",
"@ng-bootstrap/ng-bootstrap": "^12.0.0",
"@ngrx/store": "^13.0.2",
"@popperjs/core": "^2.10.2",
"apexcharts": "^3.33.2",
"bootstrap": "^5.1.3",
"lottie-web": "^5.9.1",
"ng-apexcharts": "^1.7.0",
"ng-otp-input": "^1.8.5",
"ng-particles": "^2.43.1",
"ngx-lottie": "^8.0.1",
"ngx-toastr": "^14.2.1",
"rxjs": "~7.4.0",
"tslib": "^2.3.0",
"tsparticles": "^1.43.1",
"tsparticles-engine": "^2.0.0-beta.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.1.2",
"@angular/cli": "~13.1.2",
"@angular/compiler-cli": "~13.1.0",
"@types/jasmine": "~3.10.0",
"@types/node": "^12.11.1",
"jasmine-core": "~3.10.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"typescript": "~4.5.2"
}
}
app.module.ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { AppComponent } from './app.component';
import { StoreModule } from '@ngrx/store';
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
import { BsDropdownComponent } from './components/bs-dropdown/bs-dropdown.component';
import { UserListComponent } from './components/user-list/user-list.component';
import { HttpClientModule } from '@angular/common/http';
import { ProductComponent } from './components/product/product.component';
import { addProductReducer } from './components/product/product.reducer';
import { ReactiveFormsModule } from '@angular/forms';
import { TopNavComponent } from './top-nav/top-nav.component';
import { ToasterComponent } from './components/toaster/toaster.component';
import { ToastrModule } from 'ngx-toastr';
import { ChartsApexComponent } from './components/charts-apex/charts-apex.component';
import { NgApexchartsModule } from 'ng-apexcharts';
import { OtpInputComponent } from './components/otp-input/otp-input.component';
import { NgOtpInputModule } from 'ng-otp-input';
import { NgxLottieComponentComponent } from './components/ngx-lottie-component/ngx-lottie-component.component';
import { LottieModule } from 'ngx-lottie';
import player from 'lottie-web';
import { CheckBootstrapComponent } from './components/check-bootstrap/check-bootstrap.component';
import { NgParticlesModule } from "ng-particles";
// lottie config
export function playerFactory() {
return player;
}
@NgModule({
declarations: [
AppComponent,
BsDropdownComponent,
UserListComponent,
ProductComponent,
TopNavComponent,
ToasterComponent,
ChartsApexComponent,
OtpInputComponent,
NgxLottieComponentComponent,
CheckBootstrapComponent,
],
imports: [
BrowserModule,
NgbModule,
HttpClientModule,
BrowserAnimationsModule,
StoreModule.forRoot({ product: addProductReducer }),
ReactiveFormsModule,
NgApexchartsModule,
NgOtpInputModule,
NgParticlesModule,
LottieModule.forRoot({ player: playerFactory }),
ToastrModule.forRoot({
preventDuplicates: true,
iconClasses: {
error: 'toast-error',
info: 'toast-info',
success: 'toast-success',
warning: 'toast-warning',
}
}), // ToastrModule added
],
providers: [],
bootstrap: [AppComponent],
})
export class AppModule {}
应用程序.ts
import { Component } from '@angular/core';
import { NgParticlesModule } from 'ng-particles';
import { ISourceOptions } from 'tsparticles';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
})
export class AppComponent {
particlesOptions: ISourceOptions = {
background: {
color: {
value: 'white',
},
},
fpsLimit: 60,
interactivity: {
detectsOn: 'canvas',
events: {
onClick: {
enable: true,
mode: 'push',
},
onHover: {
enable: true,
mode: 'repulse',
},
resize: true,
},
modes: {
bubble: {
distance: 400,
duration: 2,
opacity: 0.8,
size: 30,
},
push: {
quantity: 4,
},
repulse: {
distance: 100,
duration: 0.4,
},
},
},
particles: {
color: {
value: '#a9a9a9',
},
links: {
color: '#a9a9a9',
distance: 200,
enable: true,
opacity: 0.7,
width: 1.5,
},
collisions: {
enable: true,
},
move: {
direction: 'none',
enable: true,
outMode: 'bounce',
random: false,
speed: 2,
straight: false,
},
number: {
density: {
enable: true,
value_area: 800,
},
value: 80,
},
opacity: {
value: 1,
},
shape: {
type: 'diamond',
},
size: {
random: true,
value: 3,
},
},
detectRetina: true,
};
}
App.component.html
<ng-particles id="tsparticles" [options]="particlesOptions" ></ng-particles>
我不知道这个问题是 Angular 问题还是与 Canvas 有关。
ng-lottie
提出任何可行的替代方案或
ng-particles
最佳答案
这是 typescript 版本的问题,对我来说,您可以在这里查看详细信息:
https://github.com/matteobruni/tsparticles/issues/3853
关于javascript - 找不到名称 'GlobalCompositeOperation',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71796111/
在使用 ng-lottie 时用于动画。它突然出现构建问题。 Know more . 因此,为了寻找替代品,我正在尝试 ng-particles . 我已经安装了它并按照文档添加了配置。 但是,现在我
我有一个简单的代码,我想为播放器创建蒙版。 ctx.clearRect(0, 0, canvas.width, canvas.height); ctx.drawImage(level1, 0, 0);
我在 html5 Canvas 的 javascript 中使用 globalCompositeOperation 时遇到问题。 https://jsfiddle.net/6j51kxeh/ 我使用“
我有一个大的源图像,我想在一个圆圈内显示它的一小部分,并使圆圈外的 Canvas 部分保持透明。 Mozilla guide to Compositing with HTML5涵盖两个主题:globa
如何使用此函数在红色和绿色框之间放置一个蓝色框? 我需要实现这个效果。 这是一个 Codepen . HTML JS var canvas = document.getElementById("c
我有一个 Canvas ,其中包含透明背景上的艺术。我像这样降低饱和度: boardCtx.fillStyle = "rgba(0, 0, 0, 1.0)"; boardCtx.globalCompo
我正在尝试创建径向进度 View 。 Canvas 中的第二条弧应该只清除 Canvas 的一小部分,但它却将其全部清除。 我用过: this.ctx.globalCompositeOperation
我如何将 globalCompositeOperation(或任何其他可以给我“multiply”颜色操作的插件)集成到 jCanvas 中jQuery 插件? // How do I get thi
我正在尝试编写 Sierpinski 地毯前几次迭代的简单演示,如下所示: 我想要继续的方法是通过单击以在每一步上以较小的比例应用基本图案蒙版。在我看来,通过从一个黑色方 block 开始,然后使用“
我有这 4 个层。 我想做的是将 red 和 blue 层放入一个 mask 中。但我不希望 purple 或 orange 层受到此掩码的影响(只有 red 和 blue).我设法让它适用于 ora
我正在努力思考 globalCompositeOperation通过尝试组合这两个示例来获得属性:JSFiddle和 Codepen . 前者使用destination-out,后者使用source-
我对 globalCompositeOperation 有疑问。 我的目标是让蓝色元素仅显示在红色元素内部,并且根本不应该在红色矩形外部可见(有点溢出隐藏效果)。另外,红色和蓝色都必须具有转换能力(都
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
我正在尝试使用globalCompositeOperation在 内的对象上元素,但我的目标是与 Canvas 外部的对象混合 - 一个简单的 html 标记元素,如段落。 我的最终目标是使用 di
如何使用 globalCompositeOperation 删除某些内容? http://canvaspaint.org/有一个橡皮擦,但那只是一条白线 - 只有当你的背景是白色的时候才行......
我正在尝试使用 Canvas 的 globalCompositeOperation='destination-in' 设置来绘制一系列被径向渐变掩盖的点。我想要的结果显示在下面的屏幕截图中: 相反,我
每年年底我都会制作一个烟花表演 Canvas 效果(Javascript),最后一个是: http://js1k.com/2011-dysentery/demo/955 这个效果很简单:用create
我在这里查看所有不同类型的全局复合操作: https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/globa
我知道 ctx.globalcompositeoperation=source-over 在使用 drawimage 时有效,但它可以与 putimagedata 一起使用吗? 最佳答案 简短的回答是
有没有一种方法可以“更轻量”地使用 globalCompositeOperation,同时使用 source-atop? (又名打火机,但仅限于已经绘制了一些东西的地方。) 最佳答案 一次只能设置一项
我是一名优秀的程序员,十分优秀!