纯css布局实现一个狗狗摇尾巴动画
代码语言:html
所属分类:布局界面
代码描述:纯css布局实现一个狗狗摇尾巴动画
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <style> body{ background-color:#7DC387; padding:0; margin:0; } .dog-container{ background-color:#fad06c; width:120px; height:70px; position:absolute; top:40%; left:40%; border-radius:10px 10px 10px 100px; } .body{ background-color:#fad06c; width:170px; height:90px; position:relative; top:65px; left:80px; border-radius:10px 10px 10px 55px; } .legA,.legB,.legC,.legD{ background-color:#fad06c; width:19px; height:55px; position:relative; } .legA{ left:100px; top:50px; border-radius:0px 0px 10px 10px; } .legB{ left:130px; bottom:9px; border-radius:0px 0px 10px 10px; background-color:#ffb838; z-index:-1; } .legC{ left:205px; bottom:60px; background-color:#ffb838; z-index:-1; border-radius:0px 0px 10.........完整代码请登录后点击上方下载按钮下载查看
网友评论0