Food App UI Animation IOS
1.0.0
ดูการออกแบบบน Uplabs / Dribbble / Behance
ขั้นตอนที่ 1 : ดูรายการอาหารแอนิเมชั่นโดยใช้ไอคอนลูกศรถัดไปหรือก่อนหน้า
@IBAction func btnClickNext(_ sender: UIButton)
{
if isanimate == true
{
isanimate = false
UIView.animate(withDuration: 1, delay: 0, options: .curveLinear, animations: {
self.imgBurger?.transform = CGAffineTransform(scaleX: 0.001, y: 0.001)
self.imgBurgername?.transform = CGAffineTransform(scaleX: 0.001, y: 0.001)
self.lblPrice?.transform = CGAffineTransform(scaleX: 0.001, y: 0.001)
}, completion: { _ in
self.imgBurger?.transform = CGAffineTransform(scaleX: 0.0, y: 0.0)
self.imgBurger?.image = UIImage(named: "burger")
self.imgBurgername?.transform = CGAffineTransform(scaleX: 0.0, y: 0.0)
self.imgBurgername?.image = UIImage(named: "burgername")
self.lblPrice?.transform = CGAffineTransform(scaleX: 0.0, y: 0.0)
self.lblPrice?.text = "12.99 $"
UIView.animate(withDuration: 1, delay: 0, options: .curveLinear, animations: {
self.imgBurger?.transform = CGAffineTransform(scaleX: 1.0, y: 1.0)
self.imgBurgername?.transform = CGAffineTransform(scaleX: 1.0, y: 1.0)
self.lblPrice?.transform = CGAffineTransform(scaleX: 1.0, y: 1.0)
}, completion: nil)
})
let screenRect: CGRect = UIScreen.main.bounds
var _: CGFloat = screenRect.size.width
UIView.animate(withDuration: 1, delay: 0, options: .curveEaseInOut, animations: {
self.lbltitle?.frame = CGRect(x: screenRect.size.width, y: (self.lbltitle?.frame.origin.y)!, width: (self.lbltitle?.frame.size.width)!, height: (self.lbltitle?.frame.size.height)!)
self.lblSubtitle?.frame = CGRect(x: screenRect.size.width, y: (self.lblSubtitle?.frame.origin.y)!, width: (self.lblSubtitle?.frame.size.width)!, height: (self.lblSubtitle?.frame.size.height)!)
}) { finished in
//position screen left after animation
self.lbltitle?.frame = CGRect(x: -screenRect.size.width, y: (self.lbltitle?.frame.origin.y)!, width: (self.lbltitle?.frame.size.width)!, height: (self.lbltitle?.frame.size.height)!)
self.lblSubtitle?.frame = CGRect(x: -screenRect.size.width, y: (self.lblSubtitle?.frame.origin.y)!, width: (self.lblSubtitle?.frame.size.width)!, height: (self.lblSubtitle?.frame.size.height)!)
// Converted to Swift 4 by Swiftify v4.2.28558 - https://objectivec2swift.com/
UIView.animate(withDuration: 1, delay: 0, options: .curveEaseInOut, animations: {
self.lbltitle?.frame = CGRect(x: self.view.center.x - (self.lbltitle!.frame.size.width/2) , y: (self.lbltitle?.frame.origin.y)!, width: self.lbltitle!.frame.size.width, height: self.lbltitle!.frame.size.height)
self.lblSubtitle?.frame = CGRect(x: self.view.center.x - (self.lblSubtitle!.frame.size.width/2) , y: (self.lblSubtitle?.frame.origin.y)!, width: self.lblSubtitle!.frame.size.width, height: self.lblSubtitle!.frame.size.height)
// self.lbltitle?.center = self.view.center
}) { finished in
//do something after animation
}
}
}
else
{
isanimate = true
UIView.animate(withDuration: 1, delay: 0, options: .curveLinear, animations: {
self.imgBurger?.transform = CGAffineTransform(scaleX: 0.001, y: 0.001)
self.imgBurgername?.transform = CGAffineTransform(scaleX: 0.001, y: 0.001)
self.lblPrice?.transform = CGAffineTransform(scaleX: 0.001, y: 0.001)
}, completion: { _ in
self.imgBurger?.transform = CGAffineTransform(scaleX: 0.0, y: 0.0)
self.imgBurger?.image = UIImage(named: "burger")
self.imgBurgername?.transform = CGAffineTransform(scaleX: 0.0, y: 0.0)
self.imgBurgername?.image = UIImage(named: "burgername")
self.lblPrice?.transform = CGAffineTransform(scaleX: 0.0, y: 0.0)
self.lblPrice?.text = "12.99 $"
UIView.animate(withDuration: 1, delay: 0, options: .curveLinear, animations: {
self.imgBurger?.transform = CGAffineTransform(scaleX: 1.0, y: 1.0)
self.imgBurgername?.transform = CGAffineTransform(scaleX: 1.0, y: 1.0)
self.lblPrice?.transform = CGAffineTransform(scaleX: 1.0, y: 1.0)
}, completion: nil)
})
let screenRect: CGRect = UIScreen.main.bounds
var _: CGFloat = screenRect.size.width
UIView.animate(withDuration: 1, delay: 0, options: .curveEaseInOut, animations: {
self.lbltitle?.frame = CGRect(x: screenRect.size.width, y: (self.lbltitle?.frame.origin.y)!, width: (self.lbltitle?.frame.size.width)!, height: (self.lbltitle?.frame.size.height)!)
self.lblSubtitle?.frame = CGRect(x: screenRect.size.width, y: (self.lblSubtitle?.frame.origin.y)!, width: (self.lblSubtitle?.frame.size.width)!, height: (self.lblSubtitle?.frame.size.height)!)
}) { finished in
//position screen left after animation
self.lbltitle?.frame = CGRect(x: -screenRect.size.width, y: (self.lbltitle?.frame.origin.y)!, width: (self.lbltitle?.frame.size.width)!, height: (self.lbltitle?.frame.size.height)!)
self.lblSubtitle?.frame = CGRect(x: -screenRect.size.width, y: (self.lblSubtitle?.frame.origin.y)!, width: (self.lblSubtitle?.frame.size.width)!, height: (self.lblSubtitle?.frame.size.height)!)
// Converted to Swift 4 by Swiftify v4.2.28558 - https://objectivec2swift.com/
UIView.animate(withDuration: 1, delay: 0, options: .curveEaseInOut, animations: {
self.lbltitle?.frame = CGRect(x: self.view.center.x - (self.lbltitle!.frame.size.width/2) , y: (self.lbltitle?.frame.origin.y)!, width: self.lbltitle!.frame.size.width, height: self.lbltitle!.frame.size.height)
self.lblSubtitle?.frame = CGRect(x: self.view.center.x - (self.lblSubtitle!.frame.size.width/2) , y: (self.lblSubtitle?.frame.origin.y)!, width: self.lblSubtitle!.frame.size.width, height: self.lblSubtitle!.frame.size.height)
// self.lbltitle?.center = self.view.center
}) { finished in
//do something after animation
}
}
}
}
ขั้นตอนที่ 2 : ดูภาพเคลื่อนไหวและภาพประกอบสำหรับการเติมเงินที่ชื่นชอบในอาหารเฉพาะ
@IBAction func btnClickCrack(_ sender: UIButton)
{
UIView.animate(withDuration: 2, delay: 0, options: [.curveEaseIn], animations: {
self.imgVegetable?.center.y = (self.imgBurger?.frame.origin.y)! + ((self.imgBurger?.frame.height)!/2)
self.imgVegetable?.isHidden = false
self.loadViewIfNeeded()
}) { finished in
self.imgVegetable?.breakGlass(size: GridSize(columns: 15, rows: 21), completion: {
// self.reshowImage()
})
}
}
เรามีความสุขมากถ้าคุณส่งลิงค์ให้เราไปยังโครงการของคุณที่คุณใช้ส่วนประกอบของเรา เพียงส่งอีเมลไปที่ [email protected] และแจ้งให้เราทราบหากคุณมีคำถามหรือข้อเสนอแนะใด ๆ เกี่ยวกับแอปแอพอาหาร UI ใน iOS
ป.ล. เราจะเผยแพร่ตัวอย่างที่ยอดเยี่ยมมากขึ้นเกี่ยวกับห้องสมุดบุคคลที่สามมาตรฐานการเข้ารหัสปลั๊กอิน ฯลฯ ในทุกเทคโนโลยี คอยติดตาม!
ทำความคุ้นเคยกับงานของเรามากขึ้นโดยไปที่ลิงก์พอร์ตโฟลิโอของเรา
ผลงาน Facebook | Twitter | LinkedIn | Behance | Instagram | Dribbble Uplabs
โปรดอย่าลืมติดตามพวกเขา
MIT License
Copyright © 2019 CMARIX TechnoLabs
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.