css实现一个鹦鹉钉在电线上旋转动画效果代码
代码语言:html
所属分类:动画
代码描述:css实现一个鹦鹉钉在电线上旋转动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <style> body { background: #033F63; } .box { position: absolute; transform-origin: bottom right; width: 100px; height: 100px; right: 50%; top: 30%; animation: spin 1.5s infinite; animation-timing-function: cubic-bezier(0.5, 0.1, 0.1, 1); } .feet { position: absolute; width: 30px; height: 30px; background: #758ECD; border-radius: 50%; bottom: -12px; right: -20px; } .branch { position: absolute; width: 60%; height: 60%; background: #DDC8C4; border-radius: 5.........完整代码请登录后点击上方下载按钮下载查看
网友评论0