XF_RightMenu.swift 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. //
  2. // MyShopRightMenu.swift
  3. // xingchuangke
  4. //
  5. // Created by 李晓飞 on 2020/8/23.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class XF_RightMenu: UIView {
  10. let duration: TimeInterval = 0.5
  11. let contentWidth: CGFloat = 280
  12. var contentView: UIView = UIView.init() {
  13. didSet {
  14. addContainer()
  15. }
  16. }
  17. var bgView: UIView = {
  18. let v = UIView.init()
  19. v.backgroundColor = UIColor.black
  20. v.alpha = 0.5
  21. return v
  22. }()
  23. var containerView: UIView = {
  24. let v = UIView.init()
  25. v.backgroundColor = UIColor.white
  26. return v
  27. }()
  28. override init(frame: CGRect) {
  29. super.init(frame: frame)
  30. setup()
  31. }
  32. required init?(coder: NSCoder) {
  33. fatalError("init(coder:) has not been implemented")
  34. }
  35. func setup() {
  36. bgView.frame = self.frame
  37. let w = self.frame.width
  38. containerView.frame = CGRect.init(x: w, y: 0, width: contentWidth, height: self.frame.height)
  39. self.addSubview(bgView)
  40. self.addSubview(containerView)
  41. let tapG = UITapGestureRecognizer.init(target: self, action: #selector(tapGesture))
  42. bgView.addGestureRecognizer(tapG)
  43. self.isHidden = true
  44. }
  45. func addContainer() {
  46. self.contentView.frame = self.containerView.bounds
  47. self.containerView.addSubview(contentView)
  48. }
  49. // MARK: - show/hidden view
  50. func showView() {
  51. self.isHidden = false
  52. UIView.animate(withDuration: duration, animations: {
  53. let w = self.frame.width
  54. self.containerView.frame = CGRect.init(x: w - self.contentWidth, y: 0, width: self.contentWidth, height: self.frame.height)
  55. }) { (_) in
  56. }
  57. }
  58. func hiddenView() {
  59. UIView.animate(withDuration: duration, animations: {
  60. let w = self.frame.width
  61. self.containerView.frame = CGRect.init(x: w, y: 0, width: self.contentWidth, height: self.frame.height)
  62. }) { (_) in
  63. self.isHidden = true
  64. }
  65. }
  66. // MARK: - action
  67. @objc func tapGesture() {
  68. hiddenView()
  69. }
  70. /*
  71. // Only override draw() if you perform custom drawing.
  72. // An empty implementation adversely affects performance during animation.
  73. override func draw(_ rect: CGRect) {
  74. // Drawing code
  75. }
  76. */
  77. }