particles.json 578 B

123456789101112131415161718192021222324
  1. {particles:
  2. {
  3. type: "Higgs",
  4. mass: 125,
  5. charge: 0,
  6. points: 125,
  7. appearence_probabilty: .03,
  8. half_life: 5,
  9. decays: [{particles: ["W", "W"], probability: 1.}],
  10. draw_properties: {
  11. colors: ["hsl(0, 100%, 50%)", "hsl(0, 40%, 50%)"],
  12. ratios: [0, 1],
  13. inner_radius: .03,
  14. outer_radius: .13,
  15. inner_center: {x: .07, y: .07},
  16. outer_center: {x: 0, y: 0}
  17. },
  18. animation_function: function(pv){
  19. createjs.Tween.get(pv, {loop: true})
  20. .to({ scaleX: 0.9, scaleY: 1.1 }, 200)
  21. .to({ scaleX: 1.1, scaleY: 0.9 }, 200);
  22. }
  23. }
  24. }