Veja o design em uplabs / dribbble / behance
Etapa 1 : Veja a lista de alimentos de animação usando o ícone de seta seguinte ou anterior
@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
}
}
}
}
Etapa 2 : Veja a animação e ilustração para a cobertura favorita adicionada à comida em particular
@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()
})
}
}
Ficaríamos muito felizes se você nos enviou links para seus projetos onde você usa nosso componente. Basta enviar um e -mail para [email protected] e informe -nos se tiver alguma dúvida ou sugestão sobre a animação da interface do usuário do APP no iOS.
PS Vamos publicar mais exemplos de grandiosidade em bibliotecas de terceiros, padrões de codificação, plugins etc. em toda a tecnologia. Fique atento!
Familiarize -se mais com o nosso trabalho visitando alguns de nossos links de portfólio.
Portfólio | Facebook | Twitter | LinkedIn | Behance | Instagram | Dribbble | Uplabs
Por favor, não se esqueça de segui -los.
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.