电锯切割狂

2024-01-04

欢迎来到程序小院

电锯切割狂

玩法:把木块切成等分的碎片,每关都会有切割次数,木块数,切割越均匀分数越搞,
有简单、正常、困难、专家版,快去解锁不同版本进行切割吧^^。

开始游戏 icon-default.png?t=N7T8 https://www.ormcc.com/play/gameStart/238

html

<canvas width="420" height="525"></canvas>

css

canvas{
    display: block; 
    touch-action: none; 
    user-select: none; 
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 
    width: 440px; 
    height: 550px; 
    cursor: inherit; 
    margin-left: 320px; 
    margin-right: -320px;
}

js

var LevelButton = function(t, e, s, a, i, h) {
 Phaser.Button.call(this, game, t, e, null, i, h), this.lvl_number = a, 
  this.anchor.setTo(.5, .5), this.locked = !1, this.onInputDown.add(function() {
  game.add.tween(this.scale).to({
   x: 1.3,
   y: 1.3
  }, 200, Phaser.Easing.Sinusoidal.InOut, !0, 0, 0, !0)
 }, this), this.miniature = new Phaser.Image(game, 0, 0, null), 
  this.miniature.anchor.setTo(.5, .6), this.miniature.renderable = !1, 
  this.addChild(this.miniature), this.stars = new Phaser.Image(game, 0, 8, null), 
  this.stars.anchor.setTo(.5, 0), this.stars.renderable = !1, this.addChild(this.stars)
};
LevelButton.prototype = Object.create(Phaser.Button.prototype), 
LevelButton.prototype.goToLevel = function() {
 if (!this.locked) {
  game.current_lvl = this.lvl_number;
  var t = game.add.tween(game.state.getCurrentState().fade_gfx).to({
   alpha: 1
  }, 300, Phaser.Easing.Sinusoidal.InOut, !0);
  game.lastRoom = "Category", t.onComplete.add(function() {
   game.state.start("Play")
  })
 }
}, LevelButton.prototype.refresh = function() {
 SaveLoad.unlocked_levels[game.current_category] < this.lvl_number ? (
  this.loadTexture("ssheet", "lvl_button_locked"), this.stars.renderable = !1, 
  this.miniature.renderable = !1, this.locked = !0) : (
  this.loadTexture("ssheet", "lvl_highlight"), 
  this.miniature.loadTexture("lvlmini", game.current_category.toString() + "_" + 
  this.lvl_number.toString()), this.miniature.renderable = !0, 
  this.stars.renderable = !0, 
  this.stars.loadTexture("ssheet", "lvl_star_" + 
  SaveLoad.level[game.current_category][this.lvl_number].toString()), this.locked = !1)
}, LevelButton.prototype.constructor = LevelButton, Preload = function() {}, 
Preload.prototype = {
 preload: function() {
  this.cm_logo = game.add.image(210, 150, "circusmoth"), 
    this.cm_logo.anchor.setTo(.5, .5), 
    this.preload_bg = game.add.image(57, 250, "loading_bar_0"), 
    this.preload_bar = game.add.image(57, 250, "loading_bar_1"), 
    this.loading = game.add.image(210, 330, "loading"), 
    this.loading.anchor.setTo(.5, .5), game.add.tween(this.loading.scale).to({
   x: 1.2,
   y: 1.2
  }, 1e3, Phaser.Easing.Sinusoidal.InOut, !0, 0, -1, !0), 
    this.load.setPreloadSprite(this.preload_bar), 
    game.load.bitmapFont("font_label", "assets/images/font_label.png", 
    "assets/images/font_label.fnt", null, 0), 
    game.load.bitmapFont("font_digits", "assets/images/font-digits.png", 
    "assets/images/font-digits.fnt", null, 4), 
    game.load.atlasJSONHash("ssheet","assets/images/spritesheet.png", 
    "assets/images/spritesheet.json"), 
    game.load.atlasJSONHash("lvlmini", "assets/images/lvlmini.png", 
    "assets/images/lvlmini.json"), 
    game.load.image("line_dbg", "assets/images/line_dbg.png"), 
    game.load.audio("music_sfx", "assets/sounds/music.mp3"), 
    game.load.audio("chainsaw_sfx", "assets/sounds/chainsaw_1s.mp3"), 
    game.load.audio("chainsaw_alt_sfx", "assets/sounds/chainsaw_1s_alt.mp3"), 
    game.load.audio("click_sfx", "assets/sounds/click.mp3"), 
    game.load.audio("transition_sfx", "assets/sounds/transition.mp3"), 
    game.load.audio("whoosh_sfx", "assets/sounds/whoosh.mp3"), 
    game.load.audio("label_pop_sfx", "assets/sounds/label_pop.mp3"), 
    game.load.audio("win_sfx", "assets/sounds/win.mp3"), 
    game.load.audio("lose_sfx", "assets/sounds/lose.mp3")
 },
 create: function() {
  this.game.stage.backgroundColor = "#FFFFFF", game.sfx = {}, 
    game.sfx.music = game.add.audio("music_sfx", 1, !0), game.sfx.click = 
    game.add.audio("click_sfx"), this.cm_logo.visible = !1, 
    this.preload_bg.visible = !1, this.preload_bar.visible = !1, 
    this.loading.visible = !1, game.sfx.chainsaw_index = 0, 
    game.sfx.chainsaw = game.add.audio("chainsaw_sfx"), 
    game.sfx.chainsaw_alt = game.add.audio("chainsaw_alt_sfx"), 
    game.sfx.transition = game.add.audio("transition_sfx"), 
    game.sfx.whoosh = game.add.audio("whoosh_sfx"), game.sfx.label_pop = 
    game.add.audio("label_pop_sfx"), game.sfx.win = game.add.audio("win_sfx"), 
    game.sfx.lose = game.add.audio("lose_sfx"), this.state.start("MainMenu")
 }
};
var Slice = function(t, e) {
 this.point_0 = t, this.point_1 = e, this.f0t1 = !1, this.f1t0 = !1
};
Slice.prototype.checkLine = function(t) {
 return this.point_0.i == t ? (this.f0t1 = !0, [this.point_0, this.point_1]) : 
  this.point_1.i == t ? (this.f1t0 = !0, [this.point_1, this.point_0]) : null
};
var Shape = function(t) {
 Phaser.Polygon.call(this, t), this.to_kill = !1, this.dead = !1, 
  this.slices = [], this.new_shapes = [], this.centroid = Phaser.Point.centroid(this.points)
};
Shape.prototype = Object.create(Phaser.Polygon.prototype), 
Shape.prototype.constructor = Shape, Shape.prototype.update = function() {}, 
Shape.prototype.prepareSlices = function(t) {
 for (var e = [], s = 0; s < this.points.length; s++) {
  var a, i = this.points[s];
  a = s == this.points.length - 1 ? this.points[0] : this.points[s + 1];
  var h = Phaser.Line.intersectsPoints(t.start, t.end, i, a, !0);
  null != h && (h.i = s, e.push(h))
 }
 e.sort(function(e, s) {
  var a = Phaser.Point.distance(t.start, e),
   i = Phaser.Point.distance(t.start, s);
  return a - i
 }), e.length > 0 && (this.contains(t.start.x, t.start.y) && e.splice(0, 1), 
  this.contains(t.end.x, t.end.y) && e.splice(e.length - 1, 1));
 for (var o = [], s = 0; s < e.length; s += 2) o.push(new Slice(e[s], e[s + 1]));
 this.slices = o
}, Shape.prototype.makeNewPolygon = function(t, e) {
 for (var s = [t, e], a = t.i, i = e.i; i++, i == this.points.length && (i = 0), 
  s.push(this.points[i]), i != a;) {
  var h = this.checkSliceLine(i);
  null != h && (i = h[1].i, s.push(h[0]), s.push(h[1]))
 }
 this.new_shapes.push(s)
}, Shape.prototype.checkSliceLine = function(t) {
 for (var e = 0; e < this.slices.length; e++) {
  var s = this.slices[e].checkLine(t);
  if (null != s) return s
 }
 return null
}, Shape.prototype.slice = function(t) {
 if (this.prepareSlices(t), 0 != this.slices.length) {
  this.to_kill = !0;
  for (var e = 0; e < this.slices.length; e++) {
   var s = this.slices[e];
   s.f0t1 || (this.makeNewPolygon(s.point_0, s.point_1), s.f0t1 = !0), 
      s.f1t0 || (s.f1t0 = !0, this.makeNewPolygon(s.point_1, s.point_0))
  }
  Phaser.Point.centroid(this.points, this.centroid)
 }
};
var Logo = function(t) {
 Phaser.Group.call(this, game, 0, 0), this.logo_0 = 
  game.add.image(60, t, "ssheet", "logo_0"), this.logo_1 = 
  game.add.image(117, t + 20, "ssheet", "logo_1"), this.logo_2 = 
  game.add.image(172, t, "ssheet", "logo_2"), this.logo_3 = 
  game.add.image(267, t + 5, "ssheet", "logo_3"), this.logo_4 = 
  game.add.image(325, t, "ssheet", "logo_4"), this.logo_5 = 
  game.add.image(382, t, "ssheet", "logo_5"), this.logo_0.anchor.setTo(.5, .5), 
  this.logo_1.anchor.setTo(.5, .5), this.logo_2.anchor.setTo(.5, .5), 
  this.logo_3.anchor.setTo(.5, .5), this.logo_4.anchor.setTo(.5, .5), 
  this.logo_5.anchor.setTo(.5, .5), game.add.tween(this.logo_0).from({
  y: -100
 }, 1200, Phaser.Easing.Elastic.Out, !0, 1020), game.add.tween(this.logo_1).from({
  y: -100
 }, 1420, Phaser.Easing.Elastic.Out, !0, 1060), game.add.tween(this.logo_2).from({
  y: -100
 }, 1200, Phaser.Easing.Elastic.Out, !0, 1050), game.add.tween(this.logo_3).from({
  y: -100
 }, 1410, Phaser.Easing.Elastic.Out, !0, 1120), game.add.tween(this.logo_4).from({
  y: -100
 }, 1200, Phaser.Easing.Elastic.Out, !0, 1080), game.add.tween(this.logo_5).from({
  y: -100
 }, 1410, Phaser.Easing.Elastic.Out, !0, 1050), this.add(this.logo_0), 
  this.add(this.logo_1), this.add(this.logo_2), this.add(this.logo_3), 
  this.add(this.logo_4), this.add(this.logo_5), 
  game.time.events.add(5 * Phaser.Timer.SECOND, this.init_bounce, this)
};
Logo.prototype = Object.create(Phaser.Group.prototype), 
Logo.prototype.constructor = Logo, Logo.prototype.init_bounce = function() {
 game.time.events.loop(6 * Phaser.Timer.SECOND, this.bounce, this)
}, Logo.prototype.bounce = function() {
 game.add.tween(this.logo_0).to({
  y: this.logo_0.y - 30
 }, 200, Phaser.Easing.Sinusoidal.InOut, !0, 0, 0, !0), game.add.tween(this.logo_1).to({
  y: this.logo_0.y - 30
 }, 200, Phaser.Easing.Sinusoidal.InOut, !0, 100, 0, !0), game.add.tween(this.logo_2).to({
  y: this.logo_0.y - 30
 }, 200, Phaser.Easing.Sinusoidal.Out, !0, 200, 0, !0), game.add.tween(this.logo_3).to({
  y: this.logo_0.y - 30
 }, 200, Phaser.Easing.Sinusoidal.Out, !0, 300, 0, !0), game.add.tween(this.logo_4).to({
  y: this.logo_0.y - 30
 }, 200, Phaser.Easing.Sinusoidal.InOut, !0, 400, 0, !0), game.add.tween(this.logo_5).to({
  y: this.logo_0.y - 30
 }, 200, Phaser.Easing.Sinusoidal.InOut, !0, 500, 0, !0)
};
var Background = function(t) {
 Phaser.Sprite.call(this, game, 0, 0), this.fixedToCamera = !0, 
  this.offset = t || 0, this.y_margin = game.height - 525, 
  this.sky = this.game.add.image(0, 0, "ssheet", "bg"), 
  this.sky.fixedToCamera = !0, this.sky.scale.y = (this.y_margin + 251) / 251, 
  this.cloud = this.game.add.image(100, 50, "ssheet", "cloud_0"), 
  this.cloud.fixedToCamera = !0, this.cloud.xx = 400, this.cloud2 = 
  this.game.add.image(500, 70, "ssheet", "cloud_0"), this.cloud2.xx = 1e3, 
  this.cloud2.fixedToCamera = !0, this.cloud3 = 
  this.game.add.image(1e3, 60, "ssheet", "cloud_0"), 
  this.cloud3.xx = 1600, this.cloud3.fixedToCamera = !0, 
  this.grass_2 = this.game.add.tileSprite(0, 
  this.y_margin + 200, game.width, 160, "ssheet", "bg_grass_2"), 
  this.grass_2.fixedToCamera = !0, this.grass_2.tilePosition.set(-500, 0), 
  this.grass_1 = this.game.add.tileSprite(0, 
  this.y_margin + 240, game.width, 187, "ssheet", "bg_grass_1"), 
  this.grass_1.fixedToCamera = !0, this.grass_1.tilePosition.set(-250, 0), 
  this.grass_0 = this.game.add.tileSprite(0, 
  this.y_margin + 310, game.width, 220, "ssheet", "bg_grass_0"), 
  this.grass_0.fixedToCamera = !0
};
Background.prototype = Object.create(Phaser.Sprite.prototype), 
Background.prototype.update = function() {
 this.grass_2.tilePosition.set((this.game.camera.x + this.offset) * -.2, 0), 
  this.grass_1.tilePosition.set((this.game.camera.x + this.offset) * -.5, 0), 
  this.grass_0.tilePosition.set((this.game.camera.x + this.offset) * -.8, 0), 
  this.cloud.cameraOffset.x = this.cloud.xx - .2 * this.game.camera.x, 
  this.cloud.xx -= .2, this.cloud2.cameraOffset.x = this.cloud2.xx - .2 * 
  this.game.camera.x, this.cloud2.xx -= .2, this.cloud3.cameraOffset.x = 
  this.cloud2.xx - .2 * this.game.camera.x, this.cloud3.xx -= .2, 
  this.cloud.xx < -200 && (this.cloud.xx = 1500), this.cloud2.xx < -200 && (
  this.cloud2.xx = 1500), this.cloud3.xx < -200 && (this.cloud3.xx = 1500)
}, Background.prototype.destroyBg = function() {
 this.sky.destroy(), this.grass_2.destroy(), this.grass_1.destroy(), 
  this.grass_0.destroy(), this.destroy()
}, Background.prototype.rescale = function() {
 this.y_margin = game.height - 525, this.sky.scale.y = (this.y_margin + 251) / 251, 
  this.grass_2.cameraOffset.y = this.y_margin + 200, this.grass_1.cameraOffset.y = 
  this.y_margin + 240, this.grass_0.cameraOffset.y = this.y_margin + 310
};
var Tutorial = function() {
 Phaser.Group.call(this, game), this.y = 150, this.bg = 
  game.add.image(-100, 125, "ssheet", "tut_bg"), this.bg.anchor.setTo(0, .5), 
  this.addChild(this.bg), this.game.add.tween(this).from({
  x: -750
 }, 1500, Phaser.Easing.Elastic.InOut, !0, 0), game.time.events.add(300, function() {
  SaveLoad.SFX && game.sfx.whoosh.play()
 }, this), this.current_page = 0, this.page_1 = game.add.group(), 
  this.addChild(this.page_1), 
  this.title = game.add.image(210, 20, "ssheet", "tut_title"), 
  this.title.anchor.setTo(.5, 0), this.page_1.addChild(this.title), 
  this.shape_w = game.add.image(210, 125, "ssheet", "tut_shape_w"), 
  this.shape_w.anchor.setTo(.5, .5), this.page_1.addChild(this.shape_w), 
  this.shape_bottom = game.add.image(210, 125, "ssheet", "tut_shape_bottom"), 
  this.shape_bottom.anchor.setTo(.5, .5), this.shape_bottom.visible = !1, 
  this.page_1.addChild(this.shape_bottom), 
  this.shape_top = game.add.image(210, 125, "ssheet", "tut_shape_top"), 
  this.shape_top.anchor.setTo(.5, .5), this.shape_top.visible = !1, 
  this.page_1.addChild(this.shape_top), 
  this.slice = game.add.image(100, 160, "ssheet", "tut_slice"), 
  this.slice.anchor.setTo(0, .5), this.slice.width = 0, 
  this.slice.rotation = -.12435499454676144, this.page_1.addChild(this.slice), 
  this.click_dot = game.add.image(100, 160, "ssheet", "tut_click_dot"), 
  this.click_dot.scale.setTo(1.2, 1.2), this.click_dot.alpha = 0, 
  this.click_dot.anchor.setTo(.5, .5), this.page_1.addChild(this.click_dot), 
  this.hand = game.add.image(100, 160, "ssheet", "tut_hand"), 
  this.page_1.addChild(this.hand), 
  this.page_2 = game.add.image(210, 20, "ssheet", "tut_page2"), 
  this.page_2.alpha = 0, this.page_2.anchor.setTo(.5, 0), 
  this.addChild(this.page_2), game.time.events.add(2e3, function() {
  this.resetAnimation()
 }, this), console.log("TUTORIAL"), console.log(this)
};
Tutorial.prototype = Object.create(Phaser.Group.prototype), 
Tutorial.prototype.constructor = Tutorial, Tutorial.prototype.update = function() {
 this.y = .28 * game.height
}, Tutorial.prototype.resetAnimation = function() {
 this.shape_top.visible = !1, this.shape_top.y = 125, 
  this.shape_bottom.y = 125, this.shape_bottom.visible = !1, 
  this.shape_w.visible = !0, this.hand.x = 100, this.hand.y = 160, 
  this.slice.width = 0, game.add.tween(this.hand).to({
  x: 300,
  y: 135
 }, 2e3, Phaser.Easing.Sinusoidal.InOut, !0, 0), game.add.tween(
  this.click_dot.scale).to({
  x: .5,
  y: .5
 }, 200, Phaser.Easing.Sinusoidal.InOut, !0, 0), game.add.tween(
  this.click_dot).to({
  alpha: .5
 }, 200, Phaser.Easing.Sinusoidal.InOut, !0, 0), game.add.tween(
  this.click_dot).to({
  x: 300,
  y: 135
 }, 2e3, Phaser.Easing.Sinusoidal.InOut, !0, 0), 
  SaveLoad.SFX && game.sfx.click.play(), game.add.tween(this.slice).to({
  width: 202
 }, 2e3, Phaser.Easing.Sinusoidal.InOut, !0, 0), game.add.tween(this.slice).to({
  alpha: 0
 }, 200, Phaser.Easing.Sinusoidal.InOut, !0, 2500), 
  game.time.events.add(2500, function() {
  SaveLoad.SFX && game.sfx.label_pop.play(), 
    this.shape_top.visible = !0, this.shape_bottom.visible = !0, 
    this.shape_w.visible = !1, game.add.tween(this.click_dot.scale).to({
   x: 1.2,
   y: 1.2
  }, 200, Phaser.Easing.Sinusoidal.InOut, !0, 0), 
    game.add.tween(this.click_dot).to({
   alpha: 0
  }, 200, Phaser.Easing.Sinusoidal.InOut, !0, 0)
 }, this), game.add.tween(this.shape_bottom).to({
  y: 140
 }, 200, Phaser.Easing.Sinusoidal.InOut, !0, 2500), game.add.tween(this.shape_top).to({
  y: 110
 }, 200, Phaser.Easing.Sinusoidal.InOut, !0, 2500), game.add.tween(this.page_2).to({
  alpha: 1
 }, 500, Phaser.Easing.Sinusoidal.InOut, !0, 4500), game.add.tween(this.page_1).to({
  alpha: 0
 }, 500, Phaser.Easing.Sinusoidal.InOut, !0, 4200), game.add.tween(this).to({
  x: 750
 }, 1500, Phaser.Easing.Elastic.InOut, !0, 8500), game.time.events.add(8800, function() {
  SaveLoad.SFX && game.sfx.whoosh.play()
 }, this)
};
var CategoryButton = function(t, e, s, a, i, h) {
 function o() {
  this.unlocked && (SaveLoad.SFX && game.sfx.click.play(), 
    game.add.tween(this.scale).to({
   x: 1.3,
   y: 1.3
  }, 200, Phaser.Easing.Sinusoidal.InOut, !0, 0, 0, !0), 
    game.current_category = this.category, game.add.tween(game.camera).to({
   x: 840
  }, 1e3, Phaser.Easing.Sinusoidal.InOut, !0))
 }
 Phaser.Button.call(this, game, t, e, ""), this.onInputDown.add(o, this, 1), 
  this.anchor.setTo(.5, .5), this.category = s, 
  this.fill = new Phaser.Image(game, 0, 0, null), 
  this.fill.anchor.setTo(.5, .5), this.addChild(this.fill), 
  this.unlocked = !1, SaveLoad.all_stars < a ? (this.fill.loadTexture("ssheet", i), 
  this.reqStar = new Phaser.BitmapText(game, -115, 20, "font_digits", a.toString(), 25), 
  this.reqStar.anchor.setTo(1, 0), this.underline = new Phaser.Image(game, .5 * (
  this.reqStar.width + 47 + 153) - 165, 15, "ssheet", "to_unlock"), 
  this.star_ico = new Phaser.Image(game, 
  this.underline.x + 28, 17, "ssheet", "small_star"), this.star_ico.anchor.setTo(1, 0), 
  this.reqStar.x = this.star_ico.x - 38, this.addChild(this.underline), 
  this.addChild(this.reqStar), this.addChild(this.star_ico)) : (this.unlocked = !0, 
  this.fill.loadTexture("ssheet", h), maxStars = 54, 
  this.stars = new Phaser.BitmapText(game, 18, 20, "font_digits", SaveLoad.star[s] + "/" + 
  mxStars, 25), this.stars.anchor.setTo(1, 0), this.stars.x = this.stars.width - .5 * (
  this.stars.width + 47) + 5, this.star_ico = new Phaser.Image(game, 
  this.stars.x - 5, 17, "ssheet", "small_star"), this.addChild(this.stars), 
  this.addChild(this.star_ico))
};
CategoryButton.prototype = Object.create(Phaser.Button.prototype), 
CategoryButton.prototype.constructor = CategoryButton;
var TurnDevice = function() {
 Phaser.Group.call(this, game), this.fixedToCamera = !0, this.bg = 
  game.add.graphics(0, 0), this.bg.beginFill("#000000", 1), 
  this.bg.drawRect(0, 0, 420, 1500), this.bg.endFill(), this.add(this.bg), 
  this.please_turn = game.add.image(210, .5 * game.height, "ssheet", 
  "turn_device"), this.please_turn.anchor.setTo(.5, .5), this.please_turn.scale.setTo(2, 2), 
  this.add(this.please_turn)
};

源码

需要源码请关注添加好友哦^ ^

转载:欢迎来到本站,转载请注明文章出处 https://ormcc.com/

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

电锯切割狂 的相关文章

随机推荐

  • 学Python到底能干点什么?我为什么不建议去学Python

    学习了Python到底都能做些什么 好学编程今天带大家来看一看 Python 作为编程语言因其简单易学而受到很多开发者及初学者的青睐 那么 学了Python学了以后到底有什么用 它的应用领域有哪些呢 Python 的应用领域非常广泛 目前几
  • 基于SpringBoot的流浪动物救助网站

    文章目录 项目介绍 主要功能截图 部分代码展示 设计总结 项目获取方式 作者主页 超级无敌暴龙战士塔塔开 简介 Java领域优质创作者 简历模板 学习资料 面试题库 关注我 都给你 文末获取源码联系 项目介绍 基于SpringBoot的流浪
  • sha256比特币原版c++代码

    sha256是一个计算hash 的过程 比特币的算法核心就是计算sha256 sha256 h Copyright c 2014 2022 The Bitcoin Core developers Distributed under the
  • 客户数量众多,CRM管理系统如何帮助高效客户管理

    随着中型企业客户关系的不断扩大和发展 高效管理日益庞大的客户群体变得至关重要 CRM管理系统就是管理大量客户 维护客户关系的重要工具 然而 市面上CRM系统太多了 想要快速 准确找到一款适合您业务的CRM系统是一项艰巨的任务 多客户中型企业
  • CRM管理系统能提供哪些应用价值?CRM的功能

    牢固的客户关系是推动持续收入增长和盈利能力的关键 CRM管理系统则是完成这一目标的钥匙 预计到2024年 CRM在国内SaaS平台中的占比达到50 CRM解决方案存储了所有与客户相关的信息 并通过自动化工作流 全渠道沟通 销售流程管理等功能
  • 前端vue-puzzle-vcode验证码使用

    1 安装vue puzzle vcode npm i S vue puzzle vcode 2 实现代码
  • flannel和calico区别

    k8s网络模式 Flannel数据包在主机间转发是由backend实现的 目前已经支持UDP VxLAN host gw等多种模式 VxLAN 使用内核中的VxLAN模块进行封装报文 也是flannel推荐的方式 host gw虽然VXLA
  • wireshark抓包工具的使用

    专注于分享软件测试干货内容 欢迎点赞 收藏 留言 如有错误敬请指正 交流讨论 欢迎加入我们一起学习 资源分享 耗时200 小时精选的 软件测试 资料包 软件测试学习教程推荐 火遍全网的 软件测试 教程 前言 wireshark是非常流行的网
  • win8如何录制屏幕?实用教程分享

    录制屏幕已成为人们日常学习和工作中经常需要面对的问题 随着windows 8系统的普及 越来越多用户需要了解如何在这个平台上录制屏幕 可是win8如何录制屏幕呢 接下来 本文将介绍三种在win8系统上录制屏幕的方法 我们将对每种方法的操作步
  • zzz888

    8
  • 实实在在万事达!实在智能助力山东万事达集团加速数智化转型

    近日 杭州实在智能科技有限公司 以下简称 实在智能 与山东建筑钢市场 领头羊 山东万事达控股有限公司 以下简称 万事达集团 召开 RPA 机器人流程自动化 项目启动会 实在智能携手万事达集团 联合共建财务RPA一体化研发管理项目 以下简称
  • Java中的IO与NIO篇----第二篇

    系列文章目录 文章目录 系列文章目录 前言 一 阻塞 IO 模型 二 非阻塞 IO 模型 三 多路复用 IO 模型 前言 前些天发现了一个巨牛的人工智能学习网站 通俗易懂 风趣幽默 忍不住分享一下给大家 点击跳转到网站 这篇文章男女通用 看
  • iPhone强制恢复出厂设置,记好这2种方法!

    随着智能手机的广泛普及 如今有越来越多的人开始使用iPhone手机 但是 在使用的过程中 我们可能会遇到各种问题 比如程序崩溃 软件故障 系统运行缓慢等等 此时 恢复出厂设置成为了一种解决问题的有效方法 本文将为大家提供两种iphone强制
  • 人工智能未来发展前景怎么样?

    人工智能的未来发展前景怎么样 人工智能的未来发展前景非常广阔 有以下几个方面的发展趋势和前景 1 人工智能的未来发展前景 应用领域扩展 人工智能将在各个领域得到广泛应用 包括医疗保健 金融 交通 制造业 农业等 人工智能技术将帮助提高效率
  • 各位大佬看看这是不是macos的一个bug啊

    请各位大佬看看是不是一个bug啊 打开mac自带的命令行 先输入man less 显示没问题 再输入man more 发现出现的是less的说明 这里出了问题 第一张图是man less 第二张图是man more 我的系统环境如下
  • 易点易动固定资产管理系统:集成飞书,助力企业全生命周期固定资产管理

    易点易动固定资产管理系统 集成飞书 助力企业全生命周期固定资产管理 在现代商业环境中 固定资产管理对企业的运营和发展至关重要 为了提高管理效率和降低成本 我们引入了易点易动固定资产管理系统 该系统集成了飞书 为企业提供全生命周期的固定资产管
  • 美军杀伤网概念研究及对我防空作战装备体系的启示

    源自 现代防御技术 作者 王玉茜 曹亚杰 佘晓琼 廖咏一 人工智能技术与咨询 发布 摘 要 DARPA寻求从杀伤链转向杀伤网 意图利用信息网络构建高度分散的杀伤网 形成难以预测的杀伤链 美空军在试验旗体系下开展 橙旗 翠旗 和 黑旗 试验
  • Jenkins集成部署java项目

    文章目录 Jenkins简介 安装 Jenkins简介 Jenkins能实时监控集成中存在的错误 提供详细的日志文件和提醒功能 还能用图表的形式形象的展示项目构建的趋势和稳定性 官网 安装 在官网下载windows版本的Jenkins 但是
  • 技术人的年终总结分享

    印象深刻的实战经历 系统学习新技术的心得体会 精心整理的技术文档 想要安利给所有人的开发工具 对技术行业的深度思考 职业规划与心灵成长 新年Flag 在项目中取得的辉煌成绩 在应用开发中遇到的问题与解决方案 职场经历与升职感悟 编程语言的新
  • 电锯切割狂

    欢迎来到程序小院 电锯切割狂 玩法 把木块切成等分的碎片 每关都会有切割次数 木块数 切割越均匀分数越搞 有简单 正常 困难 专家版 快去解锁不同版本进行切割吧 开始游戏 https www ormcc com play gameStart