swift 跑馬燈


import UIKit

class MarqueeText: UIView {
    public var text: String? {
        willSet {
            nameLabel?.text = newValue
            setNeedsLayout()
        }
    }

    public var textColor: UIColor = UIColor.colorWithHexString(color: "ffffff") {
        willSet {
            nameLabel?.textColor = newValue
        }
    }

    public var textFont: UIFont = .systemFont(ofSize: 14, weight: .medium) {
        willSet {
            nameLabel?.font = newValue
        }
    }

    private weak var displayLink: CADisplayLink?

    private var duration: TimeInterval = 0

    /// 是否向左滾動(dòng)標(biāo)記
    private var isLeft: Bool = true

    /// 是否需要滾動(dòng)標(biāo)記
    private var isCanRun: Bool = true

    private weak var nameLabel: UILabel?
    private weak var scrollView: UIScrollView?
    private weak var leftGlassLayer: CAGradientLayer?
    private weak var rightGlassLayer: CAGradientLayer?

    override init(frame: CGRect) {
        super.init(frame: frame)
        backgroundColor = UIColor.clear
        initSubviews()
    }

    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }

    override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
        displayLink?.isPaused = true
    }

    override func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
        if isCanRun {
            displayLink?.isPaused = false
        }
    }

    override func touchesCancelled(_ touches: Set<UITouch>, with event: UIEvent?) {
        if isCanRun {
            displayLink?.isPaused = false
        }
    }

    deinit {
        self.displayLink?.invalidate()
        self.displayLink = nil
    }

    override func layoutSubviews() {
        super.layoutSubviews()
        let textSize = nameLabel?.text?.strwidth(str: (nameLabel?.text)!, font: 14)
        let margin: CGFloat = 0
        let textWith = textSize!.width + margin * 2
        scrollView?.frame = bounds
        scrollView?.backgroundColor = UIColor.clear
        scrollView?.contentSize = CGSize(width: 0, height: textWith)
        nameLabel?.frame = CGRect(x: 0, y: 0, width: textWith, height: textSize!.height)
        duration = 0
        nameLabel?.backgroundColor = UIColor.clear
        isCanRun = textWith > width
        displayLink?.isPaused = width >= textWith

        leftGlassLayer?.isHidden = width >= textWith
        rightGlassLayer?.isHidden = width >= textWith
        leftGlassLayer?.frame = CGRect(x: 0, y: 0, width: 25, height: height)
        rightGlassLayer?.frame = CGRect(x: width - 25, y: 0, width: 25, height: height)
    }

    private func initSubviews() {
        let scrollView = UIScrollView()
        scrollView.isUserInteractionEnabled = false
        scrollView.showsVerticalScrollIndicator = false
        scrollView.showsHorizontalScrollIndicator = false
        addSubview(scrollView)
        self.scrollView = scrollView

        let nameLabel = UILabel()
        nameLabel.textAlignment = .center
        nameLabel.font = textFont
        nameLabel.textColor = textColor
        scrollView.addSubview(nameLabel)
        self.nameLabel = nameLabel

        let displayLink = CADisplayLink(target: self, selector: #selector(timerEvent))
        displayLink.add(to: RunLoop.current, forMode: RunLoop.Mode.common)
        displayLink.isPaused = true
        self.displayLink = displayLink

        let leftGlassLayer = CAGradientLayer()
        leftGlassLayer.startPoint = .zero
        leftGlassLayer.endPoint = CGPoint(x: 1, y: 0)
//        leftGlassLayer.colors = [UIColor.colorWithHexString(color: "6DD781").cgColor, UIColor.colorWithHexString(color: "6DD781", alpha: 0).cgColor]
        leftGlassLayer.colors = [UIColor.clear.cgColor]
        layer.addSublayer(leftGlassLayer)
        self.leftGlassLayer = leftGlassLayer

        let rightGlassLayer = CAGradientLayer()
        rightGlassLayer.startPoint = .zero
        rightGlassLayer.endPoint = CGPoint(x: 1, y: 0)
//        rightGlassLayer.colors = [UIColor.colorWithHexString(color: "6DD781", alpha: 0).cgColor, UIColor.colorWithHexString(color: "6DD781").cgColor]
        rightGlassLayer.colors = [UIColor.clear.cgColor]
        layer.addSublayer(rightGlassLayer)
        self.rightGlassLayer = rightGlassLayer
    }

    var i = 0
    @objc private func timerEvent() {
        if duration == 0 {
            if i == 0 {
                DispatchQueue.main.asyncAfter(deadline: .now() + 2.0) { [self] in
                    abcd()
                    i = 0
                }
                i = 1
            }

        } else {
            abcd()
        }
    }

    /// 定時(shí)器事件
    func abcd() {
        let maxWith = (nameLabel?.width ?? 0) - width + 40
        let scale: TimeInterval = 0.3
        if duration < 0 {
            isLeft = false
            duration += scale
        } else if duration >= 0 && duration <= TimeInterval(maxWith) {
            if isLeft {
                duration -= scale
            } else {
                duration += scale
            }
        } else {
            isLeft = true
            duration = 0
        }

        scrollView?.setContentOffset(CGPoint(x: duration, y: 0), animated: false)
    }
}
/**
 其中 leftGlassLayer 和 rightGlassLayer 是滾動(dòng)是兩邊的文字模糊效果的遮罩層猴贰;maxWith 為 Label 在 ScrollView 上的x軸方向上的最大滾動(dòng)寬度寨腔;在不超過最大滾動(dòng)寬度時(shí),進(jìn)行 self.duration += scale 操作即向右運(yùn)動(dòng);超過最大滾動(dòng)寬度時(shí)寬度咳蔚,進(jìn)行 self.duration -= scale 操作即向左運(yùn)動(dòng)样屠;調(diào)整 scale 大小可以控制滾動(dòng)的快慢。

 作者:蒼眸之寶寶
 鏈接:http://www.reibang.com/p/913d04808c34
 來源:簡(jiǎn)書
 著作權(quán)歸作者所有姨伤。商業(yè)轉(zhuǎn)載請(qǐng)聯(lián)系作者獲得授權(quán)劫恒,非商業(yè)轉(zhuǎn)載請(qǐng)注明出處贩幻。
 */

使用

   comName_LbBgView.addSubview(MarqueeTextView)
        MarqueeTextView.snp.makeConstraints { (make) in
            make.top.bottom.right.leading.equalToSuperview()
        }
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市两嘴,隨后出現(xiàn)的幾起案子丛楚,更是在濱河造成了極大的恐慌,老刑警劉巖憔辫,帶你破解...
    沈念sama閱讀 207,248評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件趣些,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡贰您,警方通過查閱死者的電腦和手機(jī)坏平,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,681評(píng)論 2 381
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來锦亦,“玉大人舶替,你說我怎么就攤上這事「茉埃” “怎么了顾瞪?”我有些...
    開封第一講書人閱讀 153,443評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)返劲。 經(jīng)常有香客問我玲昧,道長(zhǎng),這世上最難降的妖魔是什么篮绿? 我笑而不...
    開封第一講書人閱讀 55,475評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮吕漂,結(jié)果婚禮上亲配,老公的妹妹穿的比我還像新娘。我一直安慰自己惶凝,他們只是感情好吼虎,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,458評(píng)論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著苍鲜,像睡著了一般思灰。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上混滔,一...
    開封第一講書人閱讀 49,185評(píng)論 1 284
  • 那天洒疚,我揣著相機(jī)與錄音歹颓,去河邊找鬼。 笑死油湖,一個(gè)胖子當(dāng)著我的面吹牛巍扛,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播乏德,決...
    沈念sama閱讀 38,451評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼撤奸,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了喊括?” 一聲冷哼從身側(cè)響起胧瓜,我...
    開封第一講書人閱讀 37,112評(píng)論 0 261
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎郑什,沒想到半個(gè)月后贷痪,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,609評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡蹦误,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,083評(píng)論 2 325
  • 正文 我和宋清朗相戀三年劫拢,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片强胰。...
    茶點(diǎn)故事閱讀 38,163評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡舱沧,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出偶洋,到底是詐尸還是另有隱情熟吏,我是刑警寧澤,帶...
    沈念sama閱讀 33,803評(píng)論 4 323
  • 正文 年R本政府宣布玄窝,位于F島的核電站牵寺,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏恩脂。R本人自食惡果不足惜帽氓,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,357評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望俩块。 院中可真熱鬧黎休,春花似錦、人聲如沸玉凯。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,357評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽漫仆。三九已至捎拯,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間盲厌,已是汗流浹背署照。 一陣腳步聲響...
    開封第一講書人閱讀 31,590評(píng)論 1 261
  • 我被黑心中介騙來泰國(guó)打工祸泪, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人藤树。 一個(gè)月前我還...
    沈念sama閱讀 45,636評(píng)論 2 355
  • 正文 我出身青樓浴滴,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親岁钓。 傳聞我的和親對(duì)象是個(gè)殘疾皇子升略,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,925評(píng)論 2 344

推薦閱讀更多精彩內(nèi)容