纯HTML+CSS实现阿童木头像

开发 开发工具 前端
他有十万马力,能上天能入地;他分辨善恶,是勇敢正义化身;1963年,他登上荧幕,在日本创下了未曾有过的高收视率……他叫阿童木,一个纯真、善良、勇 敢的机器娃娃。“阿童木之父”手冢治虫曾说,将阿童木生日定在2003年4月7日。你的童年记忆中,有这个发型尖尖的少年吗?

他有十万马力,能上天能入地;他分辨善恶,是勇敢正义化身;1963年,他登上荧幕,在日本创下了未曾有过的高收视率……他叫阿童木,一个纯真、善良、勇 敢的机器娃娃。“阿童木之父”手冢治虫曾说,将阿童木生日定在2003年4月7日。你的童年记忆中,有这个发型尖尖的少年吗?

正好最近学习CSS3,就准备练练手,画一个阿童木的头像。实用性不是很大,主要为练习HTML+CSS,也是为了打发时间和磨练耐心。

先上最终效果图:

纯HTML+CSS实现阿童木头像

在里面主要用的了CSS中的几个属性:position—定位;border-radius—圆角;box-shadow—阴 影;background(linear-gradient)—渐变;transform—旋转和变换;animation —动画,技术点不是很多,主要是细心和耐心。还是直接上最终源码吧。由于考虑浏览器的CSS兼容性,代码比较多。

<!DOCTYPE html> 
<html xmlns="http://www.w3.org/1999/xhtml"
<head> 
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type" /> 
    <title>纯CSS漫画</title> 
    <style type="text/css"
        * { 
            margin0
            padding0
        } 
 
        .outer-circle { 
            positionabsolute
            top: 32px
            left: 44px
            width289px
            height289px
            border4px solid #75BD4F
            -moz-border-radius: 50%
            -webkit-border-radius: 50%
            border-radius: 50%
        } 
 
        .inner-circle { 
            positionrelative
            width269px
            height269px
            border10px solid #F5F910
            -moz-border-radius: 50%
            -webkit-border-radius: 50%
            border-radius: 50%
            background-color#73BF43
        } 
 
        .inner-circle div { 
            positionabsolute
        } 
 
        .inner-circle-light { 
            top: 41px
            left: 35px
            -moz-box-shadow: 26px 26px 29px 37px #fff
            -webkit-box-shadow: 26px 26px 29px 37px #fff
            box-shadow: 26px 26px 29px 37px #fff
        } 
 
        .header-top { 
            top: 11px
            right: 2px
            z-index100
            width180px
            height90px
            -moz-border-radius: 90px 90px 0 0
            -webkit-border-radius: 90px 90px 0 0
            border-radius: 90px 90px 0 0
            background-color#000
            -moz-transform: rotate(32deg); 
            -ms-transform: rotate(32deg); 
            -o-transform: rotate(32deg); 
            -webkit-transform: rotate(32deg); 
            transform: rotate(32deg); 
        } 
 
        .header-left { 
            top: -20px
            left: 37px
            width114px
            height228px
            -moz-border-radius: 228px 0 0 228px
            -webkit-border-radius: 228px 0 0 228px
            border-radius: 228px 0 0 228px
            background-color#000
            -moz-transform: rotate(26deg); 
            -ms-transform: rotate(26deg); 
            -o-transform: rotate(26deg); 
            -webkit-transform: rotate(26deg); 
            transform: rotate(26deg); 
        } 
 
        .hair-left-1 { 
            top: 15px
            left: 53px
            z-index55
            width85px
            height23px
            -webkit-border-top-left-radius: 30px 180px
            border-top-left-radius: 30px 180px
            -webkit-border-bottom-left-radius: 30px 80px
            border-bottom-left-radius: 30px 80px
            background-color#000
            -moz-transform: rotate(-74deg) skew(-42deg, 23deg); 
            -ms-transform: rotate(-74deg) skew(-42deg, 23deg); 
            -o-transform: rotate(-74deg) skew(-42deg, 23deg); 
            -webkit-transform: rotate(-74deg) skew(-42deg, 23deg); 
            transform: rotate(-74deg) skew(-42deg, 23deg); 
        } 
 
        .hair-left-2 { 
            top: -20px
            left: 99px
            z-index60
            width49px
            height37px
            background-color#000
            -moz-transform: rotate(-51deg) skew(-43deg, 0deg); 
            -ms-transform: rotate(-51deg) skew(-43deg, 0deg); 
            -o-transform: rotate(-51deg) skew(-43deg, 0deg); 
            -webkit-transform: rotate(-51deg) skew(-43deg, 0deg); 
            transform: rotate(-51deg) skew(-43deg, 0deg); 
        } 
 
        .hair-right-1 { 
            top: 70px
            right: 1px
            z-index60
            width81px
            height85px
            -webkit-border-top-right-radius: 26px 120px
            border-top-right-radius: 26px 120px
            background-colorblack
            -moz-transform: rotate(1deg) skew(-51deg, 0deg); 
            -ms-transform: rotate(1deg) skew(-51deg, 0deg); 
            -o-transform: rotate(1deg) skew(-51deg, 0deg); 
            -webkit-transform: rotate(1deg) skew(-51deg, 0deg); 
            transform: rotate(1deg) skew(-51deg, 0deg); 
        } 
 
        .hair-right-2 { 
            width60px
            height10px
            -webkit-border-bottom-left-radius: 100%
            border-bottom-left-radius: 100%
            background-color: rgba(0,0,0,0.2); 
        } 
 
        .hair-light-1 { 
            top: 30px
            right: 45px
            z-index105
            width57px
            height17px
            -moz-border-radius: 100%
            -webkit-border-radius: 100%
            border-radius: 100%
            background-colorwhite
            -moz-transform: rotate(39deg); 
            -ms-transform: rotate(39deg); 
            -o-transform: rotate(39deg); 
            -webkit-transform: rotate(39deg); 
            transform: rotate(39deg); 
        } 
 
        .hair-light-1-over { 
            top: 32px
            right: 38px
            z-index105
            width83px
            height21px
            -moz-border-radius: 100%
            -webkit-border-radius: 100%
            border-radius: 100%
            background-colorblack
            -moz-transform: rotate(41deg); 
            -ms-transform: rotate(41deg); 
            -o-transform: rotate(41deg); 
            -webkit-transform: rotate(41deg); 
            transform: rotate(41deg); 
        } 
 
        .hair-light-2 { 
            top: 16px
            right: 104px
            z-index105
            width4px
            height2px
            -moz-border-radius: 2px
            -webkit-border-radius: 2px
            border-radius: 2px
            background-colorwhite
            -moz-transform: rotate(10deg); 
            -ms-transform: rotate(10deg); 
            -o-transform: rotate(10deg); 
            -webkit-transform: rotate(10deg); 
            transform: rotate(10deg); 
        } 
 
        .ear { 
            top: 141px
            right: 36px
            z-index110
            width49px
            height48px
            border2px solid #000
            border-bottom-width1px
            -moz-border-radius: 50%
            -webkit-border-radius: 50%
            border-radius: 50%
            background-color#F6C6B0
            -moz-box-shadow: -4px 0 0 0 #de9876 inset
            -webkit-box-shadow: -4px 0 0 0 #de9876 inset
            box-shadow: -4px 0 0 0 #de9876 inset
            -moz-transform: rotate(56deg) scaleY(1.4); 
            -ms-transform: rotate(56deg) scaleY(1.4); 
            -o-transform: rotate(56deg) scaleY(1.4); 
            -webkit-transform: rotate(56deg) scaleY(1.4); 
            transform: rotate(56deg) scaleY(1.4); 
        } 
 
        .ear-inner-1 { 
            top: 22px
            left: 22px
            z-index70
            width9px
            height5px
            border-top1px solid #110b00
            -moz-border-radius: 50%
            -webkit-border-radius: 50%
            border-radius: 50%
            -moz-transform: rotate(-6deg); 
            -ms-transform: rotate(-6deg); 
            -o-transform: rotate(-6deg); 
            -webkit-transform: rotate(-6deg); 
            transform: rotate(-6deg); 
        } 
 
        .ear-inner-2 { 
            top: 19px
            left: 18px
            width14px
            height7px
            border-top2px solid #110b00
            -moz-border-radius: 50%
            -webkit-border-radius: 50%
            border-radius: 50%
            -moz-box-shadow: 0px 2px 0 0 #de9876 inset
            -webkit-box-shadow: 0px 2px 0 0 #de9876 inset
            box-shadow: 0px 2px 0 0 #de9876 inset
            -moz-transform: rotate(-91deg); 
            -ms-transform: rotate(-91deg); 
            -o-transform: rotate(-91deg); 
            -webkit-transform: rotate(-91deg); 
            transform: rotate(-91deg); 
        } 
 
        .ear-light { 
            top: 21px
            right: 34px
            z-index105
            width17px
            height6px
            -moz-border-radius: 100%
            -webkit-border-radius: 100%
            border-radius: 100%
            background-color#FFF
            -moz-transform: rotate(89deg); 
            -ms-transform: rotate(89deg); 
            -o-transform: rotate(89deg); 
            -webkit-transform: rotate(89deg); 
            transform: rotate(89deg); 
        } 
 
        .ear-over { 
            bottom: -44px
            left: -33px
            z-index55
            width69px
            height59px
            -moz-border-radius: 50%
            -webkit-border-radius: 50%
            border-radius: 50%
            background-color#f6c6b0
            -moz-transform: rotate(26deg); 
            -ms-transform: rotate(26deg); 
            -o-transform: rotate(26deg); 
            -webkit-transform: rotate(26deg); 
            transform: rotate(26deg); 
        } 
 
        .face-main { 
            top: 30px
            left: 35px
            z-index50
            width180px
            height188px
            -moz-border-radius: 90px
            -webkit-border-radius: 90px
            border-radius: 90px
            background-color#F6C6B0
            -moz-box-shadow: 3px -3px 0 0 #fff inset
            -webkit-box-shadow: 3px -3px 0 0 #fff inset
            box-shadow: 3px -3px 0 0 #fff inset
        } 
 
        .face-top { 
            top: 61px
            right: 75px
            z-index105
            width111px
            height46px
            -moz-border-radius: 50% 50% 26px 0
            -webkit-border-radius: 50% 50% 26px 0
            border-radius: 50% 50% 26px 0
            background-color#f6c6b0
            -moz-transform: rotate(37deg); 
            -ms-transform: rotate(37deg); 
            -o-transform: rotate(37deg); 
            -webkit-transform: rotate(37deg); 
            transform: rotate(37deg); 
        } 
 
        .face-right-1 { 
            top: 115px
            right: 71px
            z-index105
            width68px
            height62px
            -moz-border-radius: 100% 0 0
            -webkit-border-radius: 100% 0 0
            border-radius: 100% 0 0
            background-color#f6c6b0
            -moz-transform: rotate(99deg); 
            -ms-transform: rotate(99deg); 
            -o-transform: rotate(99deg); 
            -webkit-transform: rotate(99deg); 
            transform: rotate(99deg); 
        } 
 
        .face-bottom-1 { 
            bottom: 42px
            left: 45px
            z-index40
            width72px
            height52px
            -webkit-border-bottom-left-radius: 70px 40px
            -webkit-border-top-left-radius: 14px 11px
            border-top-left-radius: 14px 11px
            border-bottom-left-radius: 70px 40px
            background-color#000
        } 
 
        .face-bottom-1-over { 
            bottom: 45px
            left: 48px
            z-index55
            width69px
            height47px
            -webkit-border-bottom-left-radius: 70px 40px
            -webkit-border-top-left-radius: 14px 11px
            border-top-left-radius: 14px 11px
            border-bottom-left-radius: 70px 40px
            background-color#f6c6b0
            -moz-box-shadow: 3px 0px 0 0 #fff inset
            -webkit-box-shadow: 3px 0px 0 0 #fff inset
            box-shadow: 3px 0px 0 0 #fff inset
        } 
 
        .face-bottom-2 { 
            right: 97px
            bottom: 44px
            z-index55
            width43px
            height31px
            -webkit-border-bottom-right-radius: 70px 40px
            border-bottom-right-radius: 70px 40px
            background-color#000
            -moz-transform: rotate(-4deg) skew(-49deg, 0deg); 
            -ms-transform: rotate(-4deg) skew(-49deg, 0deg); 
            -o-transform: rotate(-4deg) skew(-49deg, 0deg); 
            -webkit-transform: rotate(-4deg) skew(-49deg, 0deg); 
            transform: rotate(-4deg) skew(-49deg, 0deg); 
        } 
 
        .face-bottom-2-over { 
            right: 99px
            bottom: 46px
            z-index56
            width43px
            height31px
            -webkit-border-bottom-right-radius: 70px 40px
            border-bottom-right-radius: 70px 40px
            background-color#f6c6b0
            -moz-box-shadow: -6px 2px 0 0 #de9876 inset
            -webkit-box-shadow: -6px 2px 0 0 #de9876 inset
            box-shadow: -6px 2px 0 0 #de9876 inset
            -moz-transform: rotate(-3deg) skew(-49deg, 0deg); 
            -ms-transform: rotate(-3deg) skew(-49deg, 0deg); 
            -o-transform: rotate(-3deg) skew(-49deg, 0deg); 
            -webkit-transform: rotate(-3deg) skew(-49deg, 0deg); 
            transform: rotate(-3deg) skew(-49deg, 0deg); 
        } 
 
        .face-light-1 { 
            right: 127px
            bottom: 95px
            z-index150
            width6px
            height6px
            -moz-border-radius: 50%
            -webkit-border-radius: 50%
            border-radius: 50%
            background-color#fff
        } 
 
        .face-light-2 { 
            bottom: 82px
            left: 58px
            z-index150
            width4px
            height4px
            -moz-border-radius: 50%
            -webkit-border-radius: 50%
            border-radius: 50%
            background-color#fff
        } 
 
        .chin { 
            bottom: 39px
            left: 111px
            z-index70
            width11px
            height12px
            border2px solid #000
            border-top-color#f6c6b0
            border-left-color#f6c6b0
            -webkit-border-bottom-right-radius: 6px
            border-bottom-right-radius: 6px
            background-color#f6c6b0
            -moz-transform: rotate(34deg) skew(-9deg, 0deg); 
            -ms-transform: rotate(34deg) skew(-9deg, 0deg); 
            -o-transform: rotate(34deg) skew(-9deg, 0deg); 
            -webkit-transform: rotate(34deg) skew(-9deg, 0deg); 
            transform: rotate(34deg) skew(-9deg, 0deg); 
        } 
 
        .eye-right { 
            top: 97px
            left: 103px
            z-index110
            width39px
            height67px
            border1px solid #000
            border-top-width2px
            -moz-border-radius: 24px 43px 34px 28px / 34px 71px 34px 81px
            -webkit-border-radius: 24px 43px 34px 28px / 34px 71px 34px 81px
            border-radius: 24px 43px 34px 28px / 34px 71px 34px 81px
            background-color#F8FAF7
            -moz-box-shadow: 0px 5px 0 0 #d5d9e2 inset
            -webkit-box-shadow: 0px 5px 0 0 #d5d9e2 inset
            box-shadow: 0px 5px 0 0 #d5d9e2 inset
        } 
 
        .eye-right-inner { 
            right: 0
            bottom: 3px
            z-index115
            width30px
            height52px
            -moz-border-radius: 32px 43px 28px 48px / 47px 55px 45px 75px
            -webkit-border-radius: 32px 43px 28px 48px / 47px 55px 45px 75px
            border-radius: 32px 43px 28px 48px / 47px 55px 45px 75px
            background-color#000
        } 
 
        .eye-right-light1 { 
            top: 19px
            right: 0
            z-index120
            width19px
            height10px
            -moz-border-radius: 100%
            -webkit-border-radius: 100%
            border-radius: 100%
            background-color#FFF
            -moz-animation: eye-flash 0.2s linear 0.1s infinite normal
            -o-animation: eye-flash 0.2s linear 0.1s infinite normal
            -webkit-animation: eye-flash 0.2s linear 0.1s infinite normal
            -moz-transform: rotate(41deg); 
            -ms-transform: rotate(41deg); 
            -o-transform: rotate(41deg); 
            -webkit-transform: rotate(41deg); 
            transform: rotate(41deg); 
            animation: eye-flash 0.2s linear 0.1s infinite normal
        } 
 
        @-webkit-keyframes eye-flash { 
            0% { 
                top: 19px
            } 
 
            100% { 
                top: 21px
            } 
        } 
 
        @-moz-keyframes eye-flash { 
            0% { 
                top: 19px
            } 
 
            100% { 
                top: 20px
            } 
        } 
 
        @-ms-keyframes eye-flash { 
            0% { 
                top: 19px
            } 
 
            100% { 
                top: 20px
            } 
        } 
 
        @keyframes eye-flash { 
            0% { 
                top: 19px
            } 
 
            100% { 
                top: 20px
            } 
        } 
 
        .eye-right-light2 { 
            bottom: 8px
            left: 9px
            z-index120
            width14px
            height7px
            -webkit-border-bottom-right-radius: 100%
            border-bottom-right-radius: 100%
            background-color#FFF
            -moz-transform: rotate(-39deg); 
            -ms-transform: rotate(-39deg); 
            -o-transform: rotate(-39deg); 
            -webkit-transform: rotate(-39deg); 
            transform: rotate(-39deg); 
        } 
 
        .eye-right-eyelash1 { 
            top: 9px
            left: -3px
            width2px
            height4px
            background-color#000
            -moz-transform: rotate(-54deg); 
            -ms-transform: rotate(-54deg); 
            -o-transform: rotate(-54deg); 
            -webkit-transform: rotate(-54deg); 
            transform: rotate(-54deg); 
        } 
 
        .eye-right-eyelash2 { 
            top: 1px
            left: 1px
            width2px
            height5px
            background-color#000
            -moz-transform: rotate(-33deg); 
            -ms-transform: rotate(-33deg); 
            -o-transform: rotate(-33deg); 
            -webkit-transform: rotate(-33deg); 
            transform: rotate(-33deg); 
        } 
 
        .eye-right-eyelash3 { 
            top: -8px
            left: 8px
            width2px
            height7px
            background-color#000
            -moz-transform: rotate(-21deg); 
            -ms-transform: rotate(-21deg); 
            -o-transform: rotate(-21deg); 
            -webkit-transform: rotate(-21deg); 
            transform: rotate(-21deg); 
        } 
 
        .eye-right-eyelash4 { 
            top: -6px
            left: 21px
            width2px
            height6px
            background-color#000
            -moz-transform: rotate(11deg); 
            -ms-transform: rotate(11deg); 
            -o-transform: rotate(11deg); 
            -webkit-transform: rotate(11deg); 
            transform: rotate(11deg); 
        } 
 
        .eye-right-eyelash5 { 
            top: 1px
            right: 8px
            width2px
            height6px
            background-color#000
            -moz-transform: rotate(14deg); 
            -ms-transform: rotate(14deg); 
            -o-transform: rotate(14deg); 
            -webkit-transform: rotate(14deg); 
            transform: rotate(14deg); 
        } 
 
        .eye-left { 
            top: 114px
            left: 45px
            z-index110
            width19px
            height63px
            border1px solid #000
            border-top-width2px
            -moz-border-radius: 29px 28px 33px / 97px 111px 40px 90px
            -webkit-border-radius: 29px 28px 33px / 97px 111px 40px 90px
            border-radius: 29px 28px 33px / 97px 111px 40px 90px
            background-color#F8FAF7
            -moz-box-shadow: 0px 6px 0 0 #d5d9e2 inset
            -webkit-box-shadow: 0px 6px 0 0 #d5d9e2 inset
            box-shadow: 0px 6px 0 0 #d5d9e2 inset
            -moz-transform: rotate(-9deg); 
            -ms-transform: rotate(-9deg); 
            -o-transform: rotate(-9deg); 
            -webkit-transform: rotate(-9deg); 
            transform: rotate(-9deg); 
        } 
 
        .eye-left-inner { 
            right: 0
            bottom: 1px
            z-index115
            width15px
            height46px
            -moz-border-radius: 49px 44px 29px 58px / 143px 83px 45px 122px
            -webkit-border-radius: 49px 44px 29px 58px / 143px 83px 45px 122px
            border-radius: 49px 44px 29px 58px / 143px 83px 45px 122px
            background-color#000
        } 
 
        .eye-left-light1 { 
            top: 19px
            right: 1px
            z-index120
            width7px
            height18px
            -moz-border-radius: 100%
            -webkit-border-radius: 100%
            border-radius: 100%
            background-color#FFF
            -moz-animation: eye-flash 0.2s linear 0.1s infinite normal
            -o-animation: eye-flash 0.2s linear 0.1s infinite normal
            -webkit-animation: eye-flash 0.2s linear 0.1s infinite normal
            -moz-transform: rotate(-9deg); 
            -ms-transform: rotate(-9deg); 
            -o-transform: rotate(-9deg); 
            -webkit-transform: rotate(-9deg); 
            transform: rotate(-9deg); 
            animation: eye-flash 0.2s linear 0.1s infinite normal
        } 
 
        .eye-left-light2 { 
            bottom: 6px
            left: 4px
            z-index120
            width11px
            height4px
            -webkit-border-bottom-right-radius: 100%
            border-bottom-right-radius: 100%
            background-color#FFF
            -moz-transform: rotate(-45deg); 
            -ms-transform: rotate(-45deg); 
            -o-transform: rotate(-45deg); 
            -webkit-transform: rotate(-45deg); 
            transform: rotate(-45deg); 
        } 
 
        .eye-left-eyelash1 { 
            top: 7px
            left: -1px
            width2px
            height4px
            background-color#000
            -moz-transform: rotate(-49deg); 
            -ms-transform: rotate(-49deg); 
            -o-transform: rotate(-49deg); 
            -webkit-transform: rotate(-49deg); 
            transform: rotate(-49deg); 
        } 
 
        .eye-left-eyelash2 { 
            top: -1px
            left: 2px
            width2px
            height5px
            background-color#000
            -moz-transform: rotate(-28deg); 
            -ms-transform: rotate(-28deg); 
            -o-transform: rotate(-28deg); 
            -webkit-transform: rotate(-28deg); 
            transform: rotate(-28deg); 
        } 
 
        .eye-left-eyelash3 { 
            top: -6px
            left: 7px
            width2px
            height5px
            background-color#000
            -moz-transform: rotate(-4deg); 
            -ms-transform: rotate(-4deg); 
            -o-transform: rotate(-4deg); 
            -webkit-transform: rotate(-4deg); 
            transform: rotate(-4deg); 
        } 
 
        .eye-left-eyelash4 { 
            top: -4px
            left: 13px
            width2px
            height4px
            background-color#000
            -moz-transform: rotate(25deg); 
            -ms-transform: rotate(25deg); 
            -o-transform: rotate(25deg); 
            -webkit-transform: rotate(25deg); 
            transform: rotate(25deg); 
        } 
 
        .eye-left-eyelash5 { 
            top: 3px
            right: 0
            width2px
            height4px
            background-color#000
            -moz-transform: rotate(41deg); 
            -ms-transform: rotate(41deg); 
            -o-transform: rotate(41deg); 
            -webkit-transform: rotate(41deg); 
            transform: rotate(41deg); 
        } 
 
        .right-eyebrow { 
            top: 68px
            left: 92px
            z-index110
            width66px
            height36px
            border2px solid #000
            border-width2px 1px 0px 1px
            -moz-border-radius: 45px 51px 0 0
            -webkit-border-radius: 45px 51px 0 0
            border-radius: 45px 51px 0 0
            background-colortransparent
            -moz-transform: skew(-6deg, 16deg); 
            -ms-transform: skew(-6deg, 16deg); 
            -o-transform: skew(-6deg, 16deg); 
            -webkit-transform: skew(-6deg, 16deg); 
            transform: skew(-6deg, 16deg); 
        } 
 
        .right-eyebrow-over { 
            top: 21px
            right: -5px
            z-index115
            width13px
            height20px
            background-color#f6c6b0
        } 
 
        .left-eyebrow { 
            top: 89px
            left: 36px
            z-index100
            width30px
            height68px
            border2px solid #000
            border-width2px 1px 0px 1px
            -moz-border-radius: 100%
            -webkit-border-radius: 100%
            border-radius: 100%
            background-colortransparent
            -moz-transform: rotate(-2deg); 
            -ms-transform: rotate(-2deg); 
            -o-transform: rotate(-2deg); 
            -webkit-transform: rotate(-2deg); 
            transform: rotate(-2deg); 
        } 
 
        .left-eyebrow-over { 
            top: 17px
            right: -9px
            z-index105
            width39px
            height55px
            -moz-border-radius: 21px 12px 0 17px
            -webkit-border-radius: 21px 12px 0 17px
            border-radius: 21px 12px 0 17px
            background-color#f6c6b0
            -moz-transform: rotate(-13deg); 
            -ms-transform: rotate(-13deg); 
            -o-transform: rotate(-13deg); 
            -webkit-transform: rotate(-13deg); 
            transform: rotate(-13deg); 
        } 
 
        .nose { 
            top: 172px
            left: 63px
            z-index115
            width21px
            height16px
            border2px solid #000
            -moz-border-radius: 50%
            -webkit-border-radius: 50%
            border-radius: 50%
            -moz-box-shadow: 3px 1px 0 0 #fff inset
            -webkit-box-shadow: 3px 1px 0 0 #fff inset
            box-shadow: 3px 1px 0 0 #fff inset
        } 
 
        .nose-over { 
            top: -1px
            right: -11px
            z-index115
            width19px
            height14px
            background-color#f6c6b0
            -moz-transform: rotate(31deg); 
            -ms-transform: rotate(31deg); 
            -o-transform: rotate(31deg); 
            -webkit-transform: rotate(31deg); 
            transform: rotate(31deg); 
        } 
 
        .nose-tip { 
            top: -7px
            left: 13px
            width2px
            height6px
            background-color#000
            -moz-transform: rotate(14deg); 
            -ms-transform: rotate(14deg); 
            -o-transform: rotate(14deg); 
            -webkit-transform: rotate(14deg); 
            transform: rotate(14deg); 
        } 
 
        .mouth { 
            bottom: 61px
            left: 72px
            z-index110
            width46px
            height47px
            border2px solid #000
            border-width0 1px 2px 0
            -moz-border-radius: 32px 29px 23px 48px / 47px 82px 52px 75px
            -webkit-border-radius: 32px 29px 23px 48px / 47px 82px 52px 75px
            border-radius: 32px 29px 23px 48px / 47px 82px 52px 75px
            background-color#92222E
            -moz-transform: rotate(1deg) skew(0deg, 39deg); 
            -ms-transform: rotate(1deg) skew(0deg, 39deg); 
            -o-transform: rotate(1deg) skew(0deg, 39deg); 
            -webkit-transform: rotate(1deg) skew(0deg, 39deg); 
            transform: rotate(1deg) skew(0deg, 39deg); 
        } 
 
        .mouth-over-1 { 
            bottom: 0
            left: -4px
            z-index115
            width37px
            height58px
            border-right1px solid #000
            -moz-border-radius: 38px 13px 10px 77px / 47px 82px 52px 73px
            -webkit-border-radius: 38px 13px 10px 77px / 47px 82px 52px 73px
            border-radius: 38px 13px 10px 77px / 47px 82px 52px 73px
            background-color#f6c6b0
            -moz-transform: rotate(38deg) skew(0deg, 6deg); 
            -ms-transform: rotate(38deg) skew(0deg, 6deg); 
            -o-transform: rotate(38deg) skew(0deg, 6deg); 
            -webkit-transform: rotate(38deg) skew(0deg, 6deg); 
            transform: rotate(38deg) skew(0deg, 6deg); 
        } 
 
        .mouth-over-2 { 
            bottom: 38px
            left: 30px
            z-index150
            width7px
            height19px
            background-color#f6c6b0
            -moz-transform: rotate(-233deg); 
            -ms-transform: rotate(-233deg); 
            -o-transform: rotate(-233deg); 
            -webkit-transform: rotate(-233deg); 
            transform: rotate(-233deg); 
        } 
 
        .mouth-over-3 { 
            bottom: -9px
            left: 11px
            z-index115
            width27px
            height9px
            border-top2px solid #000
            -moz-border-radius: 100%
            -webkit-border-radius: 100%
            border-radius: 100%
            background-color#f6c6b0
            -moz-transform: rotate(-4deg); 
            -ms-transform: rotate(-4deg); 
            -o-transform: rotate(-4deg); 
            -webkit-transform: rotate(-4deg); 
            transform: rotate(-4deg); 
        } 
 
        .mouth-over-4 { 
            bottom: -6px
            left: -1px
            z-index150
            width7px
            height15px
            background-color#f6c6b0
            -moz-transform: rotate(-226deg); 
            -ms-transform: rotate(-226deg); 
            -o-transform: rotate(-226deg); 
            -webkit-transform: rotate(-226deg); 
            transform: rotate(-226deg); 
        } 
 
        .mouth-tip { 
            bottom: 39px
            left: 41px
            z-index120
            width2px
            height3px
            background-color#000
            -moz-transform: rotate(-51deg); 
            -ms-transform: rotate(-51deg); 
            -o-transform: rotate(-51deg); 
            -webkit-transform: rotate(-51deg); 
            transform: rotate(-51deg); 
        } 
 
        .mouth-inner { 
            bottom: 50px
            left: 107px
            z-index115
            width10px
            height18px
            -moz-border-radius: 10px 0 4px 6px / 8px 2px 8px 9px
            -webkit-border-radius: 10px 0 4px 6px / 8px 2px 8px 9px
            border-radius: 10px 0 4px 6px / 8px 2px 8px 9px
            background-color#ed675c
            -moz-transform: rotate(6deg); 
            -ms-transform: rotate(6deg); 
            -o-transform: rotate(6deg); 
            -webkit-transform: rotate(6deg); 
            transform: rotate(6deg); 
        } 
 
        .name-lable { 
            bottom: -9px
            left: -8px
            z-index150
            width280px
            color#005aa9
            text-aligncenter
            font-weightbold
            font-styleitalic
            font-size50px
            font-family: Times New Roman; 
        } 
 
        .name-lable-light { 
            top: 30px
            width100%
            height0
            -moz-box-shadow: 0 0 3px 3px #fff
            -webkit-box-shadow: 0 0 3px 3px #fff
            box-shadow: 0 0 3px 3px #fff
        } 
 
        @-webkit-keyframes input-flash { 
            0% { 
                border-color#ccc
                -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075); 
                -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075); 
                box-shadow: inset 0 1px 1px rgba(0,0,0,0.075); 
            } 
 
            100% { 
                border-color: rgba(82,168,236,0.8); 
                -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 10px rgba(82,168,236,0.6); 
                -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 10px rgba(82,168,236,0.6); 
                box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 10px rgba(82,168,236,0.6); 
            } 
        } 
 
        @-moz-keyframes input-flash { 
            0% { 
                border-color#ccc
                -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075); 
                -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075); 
                box-shadow: inset 0 1px 1px rgba(0,0,0,0.075); 
            } 
 
            100% { 
                border-color: rgba(82,168,236,0.8); 
                -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 10px rgba(82,168,236,0.6); 
                -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 10px rgba(82,168,236,0.6); 
                box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 10px rgba(82,168,236,0.6); 
            } 
        } 
 
        @-ms-keyframes input-flash { 
            0% { 
                border-color#ccc
                -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075); 
                -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075); 
                box-shadow: inset 0 1px 1px rgba(0,0,0,0.075); 
            } 
 
            100% { 
                border-color: rgba(82,168,236,0.8); 
                -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 10px rgba(82,168,236,0.6); 
                -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 10px rgba(82,168,236,0.6); 
                box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 10px rgba(82,168,236,0.6); 
            } 
        } 
 
        @keyframes input-flash { 
            0% { 
                border-color#ccc
                -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075); 
                -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075); 
                box-shadow: inset 0 1px 1px rgba(0,0,0,0.075); 
            } 
 
            100% { 
                border-color: rgba(82,168,236,0.8); 
                -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 10px rgba(82,168,236,0.6); 
                -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 10px rgba(82,168,236,0.6); 
                box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 10px rgba(82,168,236,0.6); 
            } 
        } 
    </style> 
</head> 
<body> 
    <div style="width: 400px; height: 359px; position: relative; margin: 50px auto;"
        <div class="outer-circle"
            <!--外圆--> 
            <div class="inner-circle"
                <!--内圆--> 
                <div class="inner-circle-light"></div> 
                <div class="header-top"></div> 
                <!--头发--> 
                <div class="hair-left-1"></div> 
                <div class="hair-left-2"></div> 
                <div class="hair-light-1"></div> 
                <div class="hair-light-1-over"></div> 
                <div class="hair-light-2"></div> 
                <div class="hair-right-1"
                    <div class="hair-right-2"
                    </div> 
                </div> 
                <div class="header-left"></div> 
                <!--脸部--> 
                <div class="face-main"></div> 
                <div class="face-light-1"></div> 
                <div class="face-light-2"></div> 
                <div class="face-top"></div> 
                <div class="face-right-1"></div> 
                <div class="face-bottom-1"></div> 
                <div class="face-bottom-1-over"></div> 
                <div class="face-bottom-2"></div> 
                <div class="face-bottom-2-over"></div> 
                <div class="chin"></div> 
                <div class="ear"
                    <!--耳朵--> 
                    <div class="ear-inner-1"></div> 
                    <div class="ear-inner-2"></div> 
                    <div class="ear-over"></div> 
                    <div class="ear-light"></div> 
                </div> 
                <div class="eye-left"
                    <!--左眼--> 
                    <div class="eye-left-inner"></div> 
                    <div class="eye-left-light1"></div> 
                    <div class="eye-left-light2"></div> 
                    <div class="eye-left-eyelash1"></div> 
                    <div class="eye-left-eyelash2"></div> 
                    <div class="eye-left-eyelash3"></div> 
                    <div class="eye-left-eyelash4"></div> 
                    <div class="eye-left-eyelash5"></div> 
                </div> 
                <div class="eye-right"
                    <!--右眼--> 
                    <div class="eye-right-inner"></div> 
                    <div class="eye-right-light1"></div> 
                    <div class="eye-right-light2"></div> 
                    <div class="eye-right-eyelash1"></div> 
                    <div class="eye-right-eyelash2"></div> 
                    <div class="eye-right-eyelash3"></div> 
                    <div class="eye-right-eyelash4"></div> 
                    <div class="eye-right-eyelash5"></div> 
                </div> 
                <div class="right-eyebrow"
                    <!--右眼眉毛--> 
                    <div class="right-eyebrow-over"></div> 
                </div> 
                <div class="left-eyebrow"
                    <!--左眼眉毛--> 
                    <div class="left-eyebrow-over"></div> 
                </div> 
                <div class="nose"
                    <!--鼻子--> 
                    <div class="nose-tip"></div> 
                    <div class="nose-over"></div> 
                </div> 
                <div class="mouth"
                    <!--嘴巴--> 
                    <div class="mouth-over-1"></div> 
                    <div class="mouth-over-2"></div> 
                    <div class="mouth-over-3"></div> 
                    <div class="mouth-over-4"></div> 
                    <div class="mouth-tip"></div> 
                </div> 
                <div class="mouth-inner"></div> 
                <div class="name-lable"
                    ASTRO BOY 
                    <div class="name-lable-light"></div> 
                </div> 
            </div> 
        </div> 
    </div> 
</body> 
</html> 
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.
  • 52.
  • 53.
  • 54.
  • 55.
  • 56.
  • 57.
  • 58.
  • 59.
  • 60.
  • 61.
  • 62.
  • 63.
  • 64.
  • 65.
  • 66.
  • 67.
  • 68.
  • 69.
  • 70.
  • 71.
  • 72.
  • 73.
  • 74.
  • 75.
  • 76.
  • 77.
  • 78.
  • 79.
  • 80.
  • 81.
  • 82.
  • 83.
  • 84.
  • 85.
  • 86.
  • 87.
  • 88.
  • 89.
  • 90.
  • 91.
  • 92.
  • 93.
  • 94.
  • 95.
  • 96.
  • 97.
  • 98.
  • 99.
  • 100.
  • 101.
  • 102.
  • 103.
  • 104.
  • 105.
  • 106.
  • 107.
  • 108.
  • 109.
  • 110.
  • 111.
  • 112.
  • 113.
  • 114.
  • 115.
  • 116.
  • 117.
  • 118.
  • 119.
  • 120.
  • 121.
  • 122.
  • 123.
  • 124.
  • 125.
  • 126.
  • 127.
  • 128.
  • 129.
  • 130.
  • 131.
  • 132.
  • 133.
  • 134.
  • 135.
  • 136.
  • 137.
  • 138.
  • 139.
  • 140.
  • 141.
  • 142.
  • 143.
  • 144.
  • 145.
  • 146.
  • 147.
  • 148.
  • 149.
  • 150.
  • 151.
  • 152.
  • 153.
  • 154.
  • 155.
  • 156.
  • 157.
  • 158.
  • 159.
  • 160.
  • 161.
  • 162.
  • 163.
  • 164.
  • 165.
  • 166.
  • 167.
  • 168.
  • 169.
  • 170.
  • 171.
  • 172.
  • 173.
  • 174.
  • 175.
  • 176.
  • 177.
  • 178.
  • 179.
  • 180.
  • 181.
  • 182.
  • 183.
  • 184.
  • 185.
  • 186.
  • 187.
  • 188.
  • 189.
  • 190.
  • 191.
  • 192.
  • 193.
  • 194.
  • 195.
  • 196.
  • 197.
  • 198.
  • 199.
  • 200.
  • 201.
  • 202.
  • 203.
  • 204.
  • 205.
  • 206.
  • 207.
  • 208.
  • 209.
  • 210.
  • 211.
  • 212.
  • 213.
  • 214.
  • 215.
  • 216.
  • 217.
  • 218.
  • 219.
  • 220.
  • 221.
  • 222.
  • 223.
  • 224.
  • 225.
  • 226.
  • 227.
  • 228.
  • 229.
  • 230.
  • 231.
  • 232.
  • 233.
  • 234.
  • 235.
  • 236.
  • 237.
  • 238.
  • 239.
  • 240.
  • 241.
  • 242.
  • 243.
  • 244.
  • 245.
  • 246.
  • 247.
  • 248.
  • 249.
  • 250.
  • 251.
  • 252.
  • 253.
  • 254.
  • 255.
  • 256.
  • 257.
  • 258.
  • 259.
  • 260.
  • 261.
  • 262.
  • 263.
  • 264.
  • 265.
  • 266.
  • 267.
  • 268.
  • 269.
  • 270.
  • 271.
  • 272.
  • 273.
  • 274.
  • 275.
  • 276.
  • 277.
  • 278.
  • 279.
  • 280.
  • 281.
  • 282.
  • 283.
  • 284.
  • 285.
  • 286.
  • 287.
  • 288.
  • 289.
  • 290.
  • 291.
  • 292.
  • 293.
  • 294.
  • 295.
  • 296.
  • 297.
  • 298.
  • 299.
  • 300.
  • 301.
  • 302.
  • 303.
  • 304.
  • 305.
  • 306.
  • 307.
  • 308.
  • 309.
  • 310.
  • 311.
  • 312.
  • 313.
  • 314.
  • 315.
  • 316.
  • 317.
  • 318.
  • 319.
  • 320.
  • 321.
  • 322.
  • 323.
  • 324.
  • 325.
  • 326.
  • 327.
  • 328.
  • 329.
  • 330.
  • 331.
  • 332.
  • 333.
  • 334.
  • 335.
  • 336.
  • 337.
  • 338.
  • 339.
  • 340.
  • 341.
  • 342.
  • 343.
  • 344.
  • 345.
  • 346.
  • 347.
  • 348.
  • 349.
  • 350.
  • 351.
  • 352.
  • 353.
  • 354.
  • 355.
  • 356.
  • 357.
  • 358.
  • 359.
  • 360.
  • 361.
  • 362.
  • 363.
  • 364.
  • 365.
  • 366.
  • 367.
  • 368.
  • 369.
  • 370.
  • 371.
  • 372.
  • 373.
  • 374.
  • 375.
  • 376.
  • 377.
  • 378.
  • 379.
  • 380.
  • 381.
  • 382.
  • 383.
  • 384.
  • 385.
  • 386.
  • 387.
  • 388.
  • 389.
  • 390.
  • 391.
  • 392.
  • 393.
  • 394.
  • 395.
  • 396.
  • 397.
  • 398.
  • 399.
  • 400.
  • 401.
  • 402.
  • 403.
  • 404.
  • 405.
  • 406.
  • 407.
  • 408.
  • 409.
  • 410.
  • 411.
  • 412.
  • 413.
  • 414.
  • 415.
  • 416.
  • 417.
  • 418.
  • 419.
  • 420.
  • 421.
  • 422.
  • 423.
  • 424.
  • 425.
  • 426.
  • 427.
  • 428.
  • 429.
  • 430.
  • 431.
  • 432.
  • 433.
  • 434.
  • 435.
  • 436.
  • 437.
  • 438.
  • 439.
  • 440.
  • 441.
  • 442.
  • 443.
  • 444.
  • 445.
  • 446.
  • 447.
  • 448.
  • 449.
  • 450.
  • 451.
  • 452.
  • 453.
  • 454.
  • 455.
  • 456.
  • 457.
  • 458.
  • 459.
  • 460.
  • 461.
  • 462.
  • 463.
  • 464.
  • 465.
  • 466.
  • 467.
  • 468.
  • 469.
  • 470.
  • 471.
  • 472.
  • 473.
  • 474.
  • 475.
  • 476.
  • 477.
  • 478.
  • 479.
  • 480.
  • 481.
  • 482.
  • 483.
  • 484.
  • 485.
  • 486.
  • 487.
  • 488.
  • 489.
  • 490.
  • 491.
  • 492.
  • 493.
  • 494.
  • 495.
  • 496.
  • 497.
  • 498.
  • 499.
  • 500.
  • 501.
  • 502.
  • 503.
  • 504.
  • 505.
  • 506.
  • 507.
  • 508.
  • 509.
  • 510.
  • 511.
  • 512.
  • 513.
  • 514.
  • 515.
  • 516.
  • 517.
  • 518.
  • 519.
  • 520.
  • 521.
  • 522.
  • 523.
  • 524.
  • 525.
  • 526.
  • 527.
  • 528.
  • 529.
  • 530.
  • 531.
  • 532.
  • 533.
  • 534.
  • 535.
  • 536.
  • 537.
  • 538.
  • 539.
  • 540.
  • 541.
  • 542.
  • 543.
  • 544.
  • 545.
  • 546.
  • 547.
  • 548.
  • 549.
  • 550.
  • 551.
  • 552.
  • 553.
  • 554.
  • 555.
  • 556.
  • 557.
  • 558.
  • 559.
  • 560.
  • 561.
  • 562.
  • 563.
  • 564.
  • 565.
  • 566.
  • 567.
  • 568.
  • 569.
  • 570.
  • 571.
  • 572.
  • 573.
  • 574.
  • 575.
  • 576.
  • 577.
  • 578.
  • 579.
  • 580.
  • 581.
  • 582.
  • 583.
  • 584.
  • 585.
  • 586.
  • 587.
  • 588.
  • 589.
  • 590.
  • 591.
  • 592.
  • 593.
  • 594.
  • 595.
  • 596.
  • 597.
  • 598.
  • 599.
  • 600.
  • 601.
  • 602.
  • 603.
  • 604.
  • 605.
  • 606.
  • 607.
  • 608.
  • 609.
  • 610.
  • 611.
  • 612.
  • 613.
  • 614.
  • 615.
  • 616.
  • 617.
  • 618.
  • 619.
  • 620.
  • 621.
  • 622.
  • 623.
  • 624.
  • 625.
  • 626.
  • 627.
  • 628.
  • 629.
  • 630.
  • 631.
  • 632.
  • 633.
  • 634.
  • 635.
  • 636.
  • 637.
  • 638.
  • 639.
  • 640.
  • 641.
  • 642.
  • 643.
  • 644.
  • 645.
  • 646.
  • 647.
  • 648.
  • 649.
  • 650.
  • 651.
  • 652.
  • 653.
  • 654.
  • 655.
  • 656.
  • 657.
  • 658.
  • 659.
  • 660.
  • 661.
  • 662.
  • 663.
  • 664.
  • 665.
  • 666.
  • 667.
  • 668.
  • 669.
  • 670.
  • 671.
  • 672.
  • 673.
  • 674.
  • 675.
  • 676.
  • 677.
  • 678.
  • 679.
  • 680.
  • 681.
  • 682.
  • 683.
  • 684.
  • 685.
  • 686.
  • 687.
  • 688.
  • 689.
  • 690.
  • 691.
  • 692.
  • 693.
  • 694.
  • 695.
  • 696.
  • 697.
  • 698.
  • 699.
  • 700.
  • 701.
  • 702.
  • 703.
  • 704.
  • 705.
  • 706.
  • 707.
  • 708.
  • 709.
  • 710.
  • 711.
  • 712.
  • 713.
  • 714.
  • 715.
  • 716.
  • 717.
  • 718.
  • 719.
  • 720.
  • 721.
  • 722.
  • 723.
  • 724.
  • 725.
  • 726.
  • 727.
  • 728.
  • 729.
  • 730.
  • 731.
  • 732.
  • 733.
  • 734.
  • 735.
  • 736.
  • 737.
  • 738.
  • 739.
  • 740.
  • 741.
  • 742.
  • 743.
  • 744.
  • 745.
  • 746.
  • 747.
  • 748.
  • 749.
  • 750.
  • 751.
  • 752.
  • 753.
  • 754.
  • 755.
  • 756.
  • 757.
  • 758.
  • 759.
  • 760.
  • 761.
  • 762.
  • 763.
  • 764.
  • 765.
  • 766.
  • 767.
  • 768.
  • 769.
  • 770.
  • 771.
  • 772.
  • 773.
  • 774.
  • 775.
  • 776.
  • 777.
  • 778.
  • 779.
  • 780.
  • 781.
  • 782.
  • 783.
  • 784.
  • 785.
  • 786.
  • 787.
  • 788.
  • 789.
  • 790.
  • 791.
  • 792.
  • 793.
  • 794.
  • 795.
  • 796.
  • 797.
  • 798.
  • 799.
  • 800.
  • 801.
  • 802.
  • 803.
  • 804.
  • 805.
  • 806.
  • 807.
  • 808.
  • 809.
  • 810.
  • 811.
  • 812.
  • 813.
  • 814.
  • 815.
  • 816.
  • 817.
  • 818.
  • 819.
  • 820.
  • 821.
  • 822.
  • 823.
  • 824.
  • 825.
  • 826.
  • 827.
  • 828.
  • 829.
  • 830.
  • 831.
  • 832.
  • 833.
  • 834.
  • 835.
  • 836.
  • 837.
  • 838.
  • 839.
  • 840.
  • 841.
  • 842.
  • 843.
  • 844.
  • 845.
  • 846.
  • 847.
  • 848.
  • 849.
  • 850.
  • 851.
  • 852.
  • 853.
  • 854.
  • 855.
  • 856.
  • 857.
  • 858.
  • 859.
  • 860.
  • 861.
  • 862.
  • 863.
  • 864.
  • 865.
  • 866.
  • 867.
  • 868.
  • 869.
  • 870.
  • 871.
  • 872.
  • 873.
  • 874.
  • 875.
  • 876.
  • 877.
  • 878.
  • 879.
  • 880.
  • 881.
  • 882.
  • 883.
  • 884.
  • 885.
  • 886.
  • 887.
  • 888.
  • 889.
  • 890.
  • 891.
  • 892.
  • 893.
  • 894.
  • 895.
  • 896.
  • 897.
  • 898.
  • 899.
  • 900.
  • 901.
  • 902.
  • 903.
  • 904.
  • 905.
  • 906.
  • 907.
  • 908.
  • 909.
  • 910.
  • 911.
  • 912.
  • 913.
  • 914.
  • 915.
  • 916.
  • 917.
  • 918.
  • 919.
  • 920.
  • 921.
  • 922.
  • 923.
  • 924.
  • 925.
  • 926.
  • 927.
  • 928.
  • 929.
  • 930.
  • 931.
  • 932.
  • 933.
  • 934.
  • 935.
  • 936.
  • 937.
  • 938.
  • 939.
  • 940.
  • 941.
  • 942.
  • 943.
  • 944.
  • 945.
  • 946.
  • 947.
  • 948.
  • 949.
  • 950.
  • 951.
  • 952.
  • 953.
  • 954.
  • 955.
  • 956.
  • 957.
  • 958.
  • 959.
  • 960.
  • 961.
  • 962.
  • 963.
  • 964.
  • 965.
  • 966.
  • 967.
  • 968.
  • 969.
  • 970.
  • 971.
  • 972.
  • 973.
  • 974.
  • 975.
  • 976.
  • 977.
  • 978.
  • 979.
  • 980.
  • 981.
  • 982.
  • 983.
  • 984.
  • 985.
  • 986.
  • 987.
  • 988.
  • 989.
  • 990.
  • 991.
  • 992.
  • 993.
  • 994.
  • 995.
  • 996.
  • 997.
  • 998.
  • 999.
  • 1000.
  • 1001.
  • 1002.
  • 1003.
  • 1004.
  • 1005.
  • 1006.
  • 1007.
  • 1008.
  • 1009.
  • 1010.
  • 1011.
  • 1012.
  • 1013.
  • 1014.
  • 1015.
  • 1016.
  • 1017.
  • 1018.
  • 1019.
  • 1020.
  • 1021.
  • 1022.
  • 1023.
  • 1024.
  • 1025.
  • 1026.
  • 1027.
  • 1028.
  • 1029.
  • 1030.
  • 1031.
  • 1032.
  • 1033.
  • 1034.
  • 1035.
  • 1036.
  • 1037.
  • 1038.
  • 1039.
  • 1040.
  • 1041.
  • 1042.
  • 1043.
  • 1044.
  • 1045.
  • 1046.
  • 1047.
  • 1048.
  • 1049.
  • 1050.
  • 1051.
  • 1052.
  • 1053.
  • 1054.
  • 1055.
  • 1056.
  • 1057.
  • 1058.
  • 1059.
  • 1060.
  • 1061.
  • 1062.
  • 1063.
  • 1064.
  • 1065.
  • 1066.
  • 1067.
  • 1068.
  • 1069.
  • 1070.
  • 1071.
  • 1072.
  • 1073.
  • 1074.
  • 1075.
  • 1076.
  • 1077.
  • 1078.
  • 1079.
  • 1080.
  • 1081.
  • 1082.
  • 1083.
  • 1084.
  • 1085.
  • 1086.
  • 1087.
  • 1088.
  • 1089.
  • 1090.
  • 1091.
  • 1092.
  • 1093.
  • 1094.
  • 1095.
  • 1096.
  • 1097.
  • 1098.
  • 1099.
  • 1100.
  • 1101.
  • 1102.
  • 1103.
  • 1104.
  • 1105.
  • 1106.
  • 1107.
  • 1108.
  • 1109.
  • 1110.
  • 1111.
  • 1112.
  • 1113.
  • 1114.
  • 1115.
  • 1116.
  • 1117.
  • 1118.
  • 1119.
  • 1120.
  • 1121.
  • 1122.
  • 1123.
  • 1124.
  • 1125.
  • 1126.
  • 1127.
  • 1128.
  • 1129.
  • 1130.
  • 1131.
  • 1132.
  • 1133.
  • 1134.
  • 1135.
  • 1136.
  • 1137.
  • 1138.

PS:建议大家使用IE9+,FireFox,Chrome浏览器打开。

第一次写博客,写的不是很好,以后不断努力。觉得好推荐一下吧!

附上源码:http://files.cnblogs.com/files/gangang/ASTRO_BOY.rar

责任编辑:王雪燕 来源: 博客园
相关推荐

2021-10-19 22:23:47

CSSBeautiful按钮

2024-08-29 08:13:58

2022-10-24 17:57:06

CSS容器查询

2022-02-21 07:02:16

CSSbeautiful按钮

2020-11-04 13:55:06

CSS密室逃脱前端

2022-08-10 16:08:38

鸿蒙CSS

2013-04-08 14:07:28

CSS

2022-03-21 15:29:35

CSSHarmonyOS鸿蒙

2022-05-05 18:32:18

浏览器图片CSS

2022-08-29 17:39:53

应用开发css动画

2021-01-19 12:16:10

CSS前端UI

2017-04-27 14:05:59

CSS动画前端

2021-01-25 06:37:06

Css前端CSS 特效

2024-05-09 00:00:00

CSS标签JavaScript

2017-07-18 14:28:04

HTMLCSSJS

2022-08-04 06:57:54

CSS拼图游戏

2023-04-17 09:08:27

CSS计时器

2024-07-31 20:38:18

2022-03-28 08:44:15

css3水波动画

2010-09-06 15:46:08

CSSDIV
点赞
收藏

51CTO技术栈公众号