博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
html 复制 有时不显示样式
阅读量:6786 次
发布时间:2019-06-26

本文共 1206 字,大约阅读时间需要 4 分钟。

是因为有中文的空格

  1. /**HTML**/  
  2.         div.ani   
  3.   
  4.         /**css**/  
  5.         .ani{   
  6.           width:480px;   
  7.           height:320px;   
  8.           margin:50px auto;   
  9.           overflow: hidden;   
  10.           box-shadow:0 0 5px rgba(0,0,0,1);   
  11.           background-size: cover;   
  12.           background-position: center;   
  13.           -webkit-animation-name: "loops";   
  14.           -webkit-animation-duration: 20s;   
  15.           -webkit-animation-iteration-count: infinite;   
  16.         }   
  17.         @-webkit-keyframes "loops" {   
  18.             0% {   
  19.                 background:url(http://d.hiphotos.baidu.com/image/w%3D400/sign=c01e6adca964034f0fcdc3069fc27980/e824b899a9014c08e5e38ca4087b02087af4f4d3.jpg) no-repeat;                
  20.             }   
  21.             25% {   
  22.                 background:url(http://b.hiphotos.baidu.com/image/w%3D400/sign=edee1572e9f81a4c2632edc9e72b6029/30adcbef76094b364d72bceba1cc7cd98c109dd0.jpg) no-repeat;   
  23.             }   
  24.             50% {   
  25.                 background:url(http://b.hiphotos.baidu.com/image/w%3D400/sign=937dace2552c11dfded1be2353266255/d8f9d72a6059252d258e7605369b033b5bb5b912.jpg) no-repeat;   
  26.             }   
  27.             75% {   
  28.                 background:url(http://g.hiphotos.baidu.com/image/w%3D400/sign=7d37500b8544ebf86d71653fe9f9d736/0df431adcbef76095d61f0972cdda3cc7cd99e4b.jpg) no-repeat;   
  29.             }   
  30.             100% {   
  31.                 background:url(http://c.hiphotos.baidu.com/image/w%3D400/sign=cfb239ceb0fb43161a1f7b7a10a54642/3b87e950352ac65ce2e73f76f9f2b21192138ad1.jpg) no-repeat;   
  32.             }   
  33.         }  

复制的时候有中文空格,所以不显示

转载于:https://www.cnblogs.com/FineDay/p/5641607.html

你可能感兴趣的文章
react-navigation 使用教程(配完整项目)
查看>>
.NET Core 2.1 Preview 2带来网络方面的改进
查看>>
从达尔文到DevOps:John Willis和Gene Kim谈后凤凰项目时代
查看>>
简析Uber的可伸缩监控:uMonitor和Neris
查看>>
腾讯云答治茜:云计算为独角兽和传统企业提供了哪些沃土?
查看>>
Spark on YARN 部署案例
查看>>
RedHat发布JBoss 7.2,完全支持Java EE 8规范
查看>>
kubernetes1.9.2基于kubeadm的高可用安装HA
查看>>
「性能优化之道」每秒上万并发下的Spring Cloud参数优化实战
查看>>
App启动流程
查看>>
原理 | 分布式链路跟踪组件 SOFATracer 和 Zipkin 模型转换
查看>>
我的第一篇博客
查看>>
手把手教你如何用Python从PDF文件中导出数据(附链接)
查看>>
维珍银河完成最长距离火箭飞行,下一步剑指太空旅行
查看>>
[Python]attributeError:'module' object has no attribute 'dump'
查看>>
Docker系列教程11-使用Nexus管理Docker镜像
查看>>
业界最全,阿里云混合云灾备服务上线!
查看>>
Windows Linux 子系统可以在资源管理器中打开
查看>>
WebStorm文件类型关联设置
查看>>
13.1 Spring MVC 关于controller的字符编码
查看>>