请教各位,JS6贴片三极管可用什么代换,谢谢!

JavaScript09

请教各位,JS6贴片三极管可用什么代换,谢谢!,第1张

图中可能是二极管,不是三极管。

二极管类型:小信号-HV

电流, If 平均:200mA

电压, Vrrm:200V

正向电压 Vf 最大:1.25V

时间, trr 最大:50ns

电流, Ifs 最大:1A

封装形式:SOT-23

针脚数:3

封装类型:SOT-23

总功率, Ptot:350mW

最大正向电流, If:600mA

正向电压, 于If:1V

正向电流 If:100mA

测试电流:100mA

电流, If @ Vf:200mA

电流, Ifsm:1A

结温, Tj 最高:150°C

我们利用d3滤镜为d3元素增加光的效果

我们存一些全局变量

this.animateOption = null

this.defs = null

this.animateId = ""

this.feDropShadow = null

滤镜初始化

function create(option){

this.animateOption = option

this.defs = this.svg.append("defs")

let linearGradient = this.defs.append("filter")

.attr("id",this.animateOption.id)

.attr("x","-50%")

.attr("y","-50%")

.attr("width","200%")

.attr("height","200%")

this.feDropShadow = linearGradient.append("feDropShadow")

.attr("dx", "0")

.attr("dy","0")

.attr("stdDeviation","0")

.attr("flood-color",this.animateOption.floodColor)

}

启动滤镜

```javascript

function start(){

let multiplier = this.animateOption.speed

let xDiff= 0.01

let yDiff= 0.01

let that = this

function setBlur(x,y){

that.feDropShadow.attr("stdDeviation",x)

}

let flag = true

(function updateMotionBlur(){

 更多参考 https://xiaozhuanlan.com/topic/8193652740