​平湖网站推广【平湖官网推广哪个效果好】平湖百度竞价推广托管、平湖百度优化推广外包、平湖全网霸屏推广多少钱、平湖网络推广一年大概多少费-网络推广-网站建设【企业网站制作|网页设计】- 高端网站建设 - 书生商友信息科技-

全国热线:400-111-6878

网站建设推广专家

​平湖网站推广【平湖官网推广哪个效果好】平湖百度竞价推广托管、平湖百度优化推广外包、平湖全网霸屏推广多少钱、平湖网络推广一年大概多少费

发表日期: 2020-07-21 14:38:24 浏览次数:110

平湖网站推广【平湖官网推广哪个效果好】平湖百度竞价推广托管、平湖百度优化推广外包、平湖全网霸屏推广多少钱、平湖网络推广一年大概多少费


平湖是浙江省嘉兴市下辖县级市,地理坐标介于北纬30°35′—52′和东经120°57′—121°16′之间。陆域面积537平方公里,海域面积1086平方公里,海岸线长27公里;耕地面积47万亩。2015年,常住人口68.38万人。平湖属江南古陆外缘杭州湾凹陷为一冲积平原。境内地势平坦,平均海拔2.8米,除东南沿海有呈带状分布的20座低丘和11座岛礁共4.89平方公里外,余为大片平原。

2019年以来,先后入选2019年度全国综合实力百强县市。入选2019年度全国新型城镇化质量百强县市、2019全国营商环境百强县、2019年全国投资潜力十强县(市)。2019年12月19日,平湖市入选国家城乡融合发展试验区。2019年12月31日,入选全国农村创新创业典型县。


html+css3制作飞舞的火箭动画

工具/原料

  • adobe dreamweaver

方法/步骤

  1. 新建html文档。

    html+css3制作飞舞的火箭动画
  2. 书写hmtl代码。

    <div id="animation">

            <a href="#" title="点击了解更多">

                <div class="spaceship">

                    <div class="antenna"></div>

                    <div class="body"></div>

                    <div class="window"></div>

                    <div class="fins"></div>

                    <div class="rocket"></div>

                    <div class="fireWrapper">

                        <div class="fire">

                            <div>1</div>

                            <div>2</div>

                            <div>3</div>

                            <div>4</div>

                            <div>5</div>

                            <div>6</div>

                        </div>

                    </div>

                </div>

            </a>

        </div>

    html+css3制作飞舞的火箭动画
  3. 书写公用css代码。

    * { margin: 0; padding: 0; list-style: none; }

    #animation { animation: flight 3s ease-in-out 0s infinite alternate none; -webkit-animation: flight 3s ease-in-out 0s infinite alternate none; width: 50%; float: right; height: 100%; z-index: 100; margin-top: 300px; margin-right: 400px; }

    .spaceship { position: absolute; -webkit-transform: scale(0.76) rotate(45deg); -moz-transform: scale(0.76) rotate(45deg); -ms-transform: scale(0.76) rotate(45deg); -o-transform: scale(0.76) rotate(45deg); transform: scale(0.76) rotate(45deg); top: 20%; left: 65% }

    .spaceship .body { width: 300px; height: 300px; margin-top: -150px; margin-left: -150px; border-radius: 300px; position: absolute; box-shadow: -33px -33px 0 rgba(228, 230, 234, .6) inset; background-color: rgba(235, 236, 240, 1); -webkit-transform: scale(0.46, 1); -moz-transform: scale(0.46, 1); -ms-transform: scale(0.46, 1); -o-transform: scale(0.46, 1); transform: scale(0.46, 1); overflow: hidden }

    .spaceship .body:before { content: ""; position: absolute; width: 100%; height: 285px; background-color: rgba(255, 153, 145, 1); border-radius: 300px; -webkit-transform: scale(0.9, .46); -moz-transform: scale(0.9, .46); -ms-transform: scale(0.9, .46); -o-transform: scale(0.9, .46); transform: scale(0.9, .46); margin-top: -180px }

    .spaceship .window { width: 40px; height: 40px; margin-top: -40px; margin-left: -26px; border: 6px solid rgba(215, 216, 220, 1); background-color: rgba(245, 246, 255, 1); overflow: hidden; position: absolute; border-radius: 40px }

    .spaceship .window:before, .spaceship .window:after { width: 5px; height: 60px; position: absolute; content: ""; margin-left: 16px; margin-top: -5px; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); background-color: #fff; opacity: .5 }

    .spaceship .window:before { margin-top: 10px }

    .spaceship .fins { position: absolute; margin-top: -60px; z-index: -1 }

    .spaceship .fins:before, .spaceship .fins:after { content: ""; position: absolute; border-color: rgba(255, 153, 145, 1); height: 30px; border-top: 140px solid transparent; border-bottom: 20px solid transparent }

    .spaceship .fins:before { border-right: 100px solid rgba(255, 153, 145, 1); margin-left: -100px }

    .spaceship .fins:after { border-left: 100px solid rgba(255, 153, 145, 1) }

    .spaceship .antenna { position: absolute; background-color: rgba(235, 236, 240, 1); margin-top: -200px; margin-left: -2px; top: 50%; left: 50%; width: 4px; height: 60px }

    html+css3制作飞舞的火箭动画
  4. 书写css代码。

    .spaceship .antenna:before { width: 16px; height: 16px; content: ""; background-color: rgba(235, 236, 240, 1); box-shadow: -3px -3px 0 rgba(225, 226, 230, 1) inset; position: absolute; border-radius: 16px; margin-top: -8px; margin-left: -6px }

    .spaceship .rocket { width: 60px; height: 10px; position: absolute; border-top: 30px solid rgba(130, 134, 138, 1); border-right: 10px solid transparent; border-left: 10px solid transparent; margin-top: 120px; margin-left: -40px }

    .spaceship .rocket:before { background-color: rgba(130, 134, 138, 1); margin-top: -70px; margin-left: -10px; position: absolute; content: ""; border-radius: 80px; -webkit-transform: scale(1, .25); -moz-transform: scale(1, .25); -ms-transform: scale(1, .25); -o-transform: scale(1, .25); transform: scale(1, .25); width: 80px; height: 80px }

    .spaceship .rocket:after { background-color: rgba(120, 124, 128, 1); margin-top: -30px; position: absolute; content: ""; border-radius: 80px; -webkit-transform: scale(1, .15); -moz-transform: scale(1, .15); -ms-transform: scale(1, .15); -o-transform: scale(1, .15); transform: scale(1, .15); width: 60px; height: 60px }

    .spaceship .fireWrapper { position: absolute; overflow: hidden; border-radius: 60px; width: 60px; height: 500px; margin-top: -66px; margin-left: -30px; z-index: 100; -webkit-transform: scale(1, .15); -moz-transform: scale(1, .15); -ms-transform: scale(1, .15); -o-transform: scale(1, .15); transform: scale(1, .15) }

    .fire { position: absolute; margin-top: 140px; width: 60px; height: 60px; opacity: .9; -webkit-transform: scale(1, 6.67); -moz-transform: scale(1, 6.67); -ms-transform: scale(1, 6.67); -o-transform: scale(1, 6.67); transform: scale(1, 6.67) }

    .fire div { position: absolute; -webkit-transform-origin: top center; transform-origin: top center; border-top: 30px solid rgba(255, 0, 0, 1); border-left: 25px solid transparent; border-right: 25px solid transparent; opacity: 0 }

    .fire div:nth-of-type(1) { animation: fire .35s linear 0s infinite alternate none; -webkit-animation: fire .35s linear 0s infinite alternate none; opacity: .8; margin-left: 5px; border-top-color: rgba(255, 190, 100, 1); border-top-width: 50px; z-index: -1 }

    .fire div:nth-of-type(2) { animation: fire .38s linear -.5s infinite alternate none; -webkit-animation: fire .38s linear -.5s infinite alternate none; opacity: .8; margin-left: 16px; border-top-color: rgba(255, 140, 100, 1); border-top-width: 40px; z-index: 0 }

    .fire div:nth-of-type(3) { animation: fire .4s linear -1s infinite alternate none; -webkit-animation: fire .4s linear -1s infinite alternate none; opacity: .8; margin-left: -6px; border-top-color: rgba(255, 160, 100, 1); border-top-width: 30px; z-index: 1 }

    .fire div:nth-of-type(4) { animation: fire .55s linear -1.2s infinite alternate none; -webkit-animation: fire .55s linear -1.2s infinite alternate none; opacity: .8; margin-left: 9px; border-left-width: 20px; border-right-width: 20px; border-top-color: rgba(255, 200, 100, 1); border-top-width: 50px; z-index: -1 }

    .fire div:nth-of-type(5) { animation: fire .25s linear -1.2s infinite alternate none; -webkit-animation: fire .25s linear -1.2s infinite alternate none; opacity: .8; margin-left: 14px; border-left-width: 25px; border-right-width: 25px; border-top-color: rgba(255, 220, 100, 1); border-top-width: 35px; z-index: 2 }

    .fire div:nth-of-type(6) { animation: fire .25s linear -1.2s infinite alternate none; -webkit-animation: fire .25s linear -1.2s infinite alternate none; opacity: .8; margin-left: -6px; border-left-width: 25px; border-right-width: 25px; border-top-color: rgba(255, 230, 110, 1); border-top-width: 35px; z-index: 2 }

    @keyframes fire {  100% { -webkit-transform: skew(30deg); -moz-transform: skew(30deg); -ms-transform: skew(30deg); -o-transform: skew(30deg)} 74% { -webkit-transform: skew(-15deg); -moz-transform: skew(-15deg); -ms-transform: skew(-15deg); -o-transform: skew(-15deg); transform: skew(-15deg)} 58% { -webkit-transform: skew(10deg); -moz-transform: skew(10deg); -ms-transform: skew(10deg); -o-transform: skew(10deg); transform: skew(10deg)} 30% { -webkit-transform: skew(-35deg); -moz-transform: skew(-35deg); -ms-transform: skew(-35deg); -o-transform: skew(-35deg); transform: skew(-35deg)} 0% { -webkit-transform: skew(25deg); -moz-transform: skew(25deg); -ms-transform: skew(25deg); -o-transform: skew(25deg); transform: skew(25deg)}}

    @-webkit-keyframes fire {  100% { -webkit-transform: skew(30deg); -moz-transform: skew(30deg); -ms-transform: skew(30deg); -o-transform: skew(30deg)} 74% { -webkit-transform: skew(-15deg); -moz-transform: skew(-15deg); -ms-transform: skew(-15deg); -o-transform: skew(-15deg); transform: skew(-15deg)} 58% { -webkit-transform: skew(10deg); -moz-transform: skew(10deg); -ms-transform: skew(10deg); -o-transform: skew(10deg); transform: skew(10deg)} 30% { -webkit-transform: skew(-35deg); -moz-transform: skew(-35deg); -ms-transform: skew(-35deg); -o-transform: skew(-35deg); transform: skew(-35deg)} 0% { -webkit-transform: skew(25deg); -moz-transform: skew(25deg); -ms-transform: skew(25deg); -o-transform: skew(25deg); transform: skew(25deg)}}

    @keyframes flight {  100% { -webkit-transform: translate(40px, 60px) rotate(-4deg); -moz-transform: translate(40px, 60px); -ms-transform: translate(40px, 60px); -o-transform: translate(40px, 60px); transform: translate(40px, 60px)} 66% { -webkit-transform: translate(-30px, -50px) rotate(5deg); -moz-transform: translate(-30px, -50px) rotate(5deg); -ms-transform: translate(-30px, -50px) rotate(5deg); -o-transform: translate(-30px, -50px) rotate(5deg); transform: translate(-30px, -50px) rotate(5deg)} 36% { -webkit-transform: translate(50px, 40px) rotate(-6deg); -moz-transform: translate(50px, 40px) rotate(-6deg); -ms-transform: translate(50px, 40px) rotate(-6deg); -o-transform: translate(50px, 40px) rotate(-6deg); transform: translate(50px, 40px) rotate(-6deg)} 0% { -webkit-transform: translate(-40px, -30px) rotate(5deg); -moz-transform: translate(-40px, -30px) rotate(5deg); -ms-transform: translate(-40px, -30px) rotate(5deg); -o-transform: translate(-40px, -30px) rotate(5deg); transform: translate(-40px, -30px) rotate(5deg)}}

    @-webkit-keyframes flight {  100% { -webkit-transform: translate(40px, 60px) rotate(-4deg); -moz-transform: translate(40px, 60px); -ms-transform: translate(40px, 60px); -o-transform: translate(40px, 60px); transform: translate(40px, 60px)} 66% { -webkit-transform: translate(-30px, -50px) rotate(5deg); -moz-transform: translate(-30px, -50px) rotate(5deg); -ms-transform: translate(-30px, -50px) rotate(5deg); -o-transform: translate(-30px, -50px) rotate(5deg); transform: translate(-30px, -50px) rotate(5deg)} 36% { -webkit-transform: translate(50px, 40px) rotate(-6deg); -moz-transform: translate(50px, 40px) rotate(-6deg); -ms-transform: translate(50px, 40px) rotate(-6deg); -o-transform: translate(50px, 40px) rotate(-6deg); transform: translate(50px, 40px) rotate(-6deg)} 0% { -webkit-transform: translate(-40px, -30px) rotate(5deg); -moz-transform: translate(-40px, -30px) rotate(5deg); -ms-transform: translate(-40px, -30px) rotate(5deg); -o-transform: translate(-40px, -30px) rotate(5deg); transform: translate(-40px, -30px) rotate(5deg)}}

    html+css3制作飞舞的火箭动画
  5. 代码整体结构。

    html+css3制作飞舞的火箭动画
  6. 查看效果。

    html+css3制作飞舞的火箭动画



7 月 20 日,在华为云 TechWave 技术峰会上,华为云 Marketing 与生态总裁陈亮发表主题演讲,分享了华为云联合伙伴助力 “新基建”的最新进展。


“新基建”的目的是为了推动数字经济高质量发展,而云、AI 和 5G 作为新型基础设施的三要素,是数字经济的发动机。华为云认为,数据成为新的生产要素,算力成为新的生产力,云、AI 和 5G 成为新的生产工具,这将会带来新的变化和新的机会,释放新的红利,从而驱动产业变革,赋能行业数字化转型。



平湖网站推广平湖官网推广哪个效果好平湖百度竞价推广托管、平湖百度优化推广外包、平湖全网霸屏推广多少钱、平湖网络推广一年大概多少费



上一条:​玉环网站推广【玉环官网推广哪个效果好】玉环百度竞价推广托管、玉环百度优化推广外包、玉环全网霸屏推广多少钱、玉环网络推广一年大概多少费
下一条:​海盐网站推广【海盐官网推广哪个效果好】海盐百度竞价推广托管、海盐百度优化推广外包、海盐全网霸屏推广多少钱、海盐网络推广一年大概多少费
网站制作
小程序制作
网站优化
网站开发
400电话办理
网络推广
网站建设
网店装修
微信公众号开发
网页设计
网络公司
域名企业邮箱
服务器空间
网站案例报价
百科问答
编辑排版美工
App软件开发
百度推广
代运营托管
logo设计
网络全网营销
网站备案
网站定制
小程序开发公司
首页
电话
立即预约