当前位置: 首页 > news >正文

定制高端网站互联网营销怎么做

定制高端网站,互联网营销怎么做,新疆建设工程信息网查询,石家庄模板网站用css实现幻灯片播放是最基础的&#xff0c;闲下来没事就试着写了一下&#xff0c;如果有不够完善或者方法不好的地方还请指点。下面我就用两种方法实现css花灯片效果。 方法1&#xff1a;定位。通过position属性改变left值 html代码&#xff1a; <section idbox><ul&…

用css实现幻灯片播放是最基础的,闲下来没事就试着写了一下,如果有不够完善或者方法不好的地方还请指点。下面我就用两种方法实现css花灯片效果。

方法1:定位。通过position属性改变left值

html代码:

<section id=box><ul><li>1</li><li>2</li><li>3</li><li>4</li><li>1</li></ul>
</section>

css代码:

<style>* {margin: 0;padding: 0;font-family: 微软雅黑;list-style: none;}#box{width:400px;height:200px;border: 1px solid #000;margin: 50px auto;position:relative;overflow: hidden;}ul{width: 2000px;position: absolute;top:0;left:0;animation: dh 10s infinite ease;}ul li{width:400px;height:200px;float: left;}ul li:nth-child(1){background:#4b86db;}ul li:nth-child(2){background:#ff9999;}ul li:nth-child(3){background:olivedrab;}ul li:nth-child(4){background:skyblue;}ul li:nth-child(5){background:#4b86db;}@keyframes dh {0%{left:0px;}25%{left:-400px;}50%{left:-800px;}75%{left:-1200px;}100%{left:-1600px;}}
</style>

 

方法2:2D转换。通过transfrom属性

html代码:

<section id=box><ul><li>1</li><li>2</li><li>3</li><li>4</li><li>1</li></ul>
</section>

 

css代码:

<style>* {margin: 0;padding: 0;font-family: 微软雅黑;list-style: none;}#box{width:400px;height:200px;border: 1px solid #000;margin: 50px auto;overflow: hidden;}ul{width: 2000px;animation: dh 10s infinite ease;}ul li{width:400px;height:200px;float: left;}ul li:nth-child(1){background:#4b86db;}ul li:nth-child(2){background:#ff9999;}ul li:nth-child(3){background:olivedrab;}ul li:nth-child(4){background:skyblue;}ul li:nth-child(5){background:#4b86db;}@keyframes dh {0%{transform: translateX(0)}25%{transform: translateX(-400px)}50%{transform: translateX(-800px)}75%{transform: translateX(-1200px)}100%{transform: translateX(-1600px)}
}</style>

以上两种方法是我想到最简单的方法,如果有更好的方法还请朋友们留言指教。

 

转载于:https://www.cnblogs.com/sdcs/p/8283824.html

http://www.lbrq.cn/news/2427841.html

相关文章:

  • 苏州网站建设设计制作公司怎么样天天外链官网
  • 深圳有做网站最近价格?西安百度公司官网
  • 青岛公司网站建设价格杭州网站建设网页制作
  • 如何在局域网做网站seo专业实战培训
  • wordpress图片间隔seo软件视频教程
  • 广东营销型网站建设报价如何推广我的网站
  • 帝国cms怎么做音乐网站推广普通话内容
  • 卫计委对医院网站建设要求东莞搜索排名提升
  • 尊园地产做的网站广州seo推广公司
  • 网站建设成本百度关键词搜索优化
  • 自助注册搭建网站狠抓措施落实
  • 专业网站建设品牌策划福州网站关键词推广
  • 单片机做网站百度投诉中心电话24个小时
  • 黔西南做网站的有几家全网关键词搜索排行
  • 怎样制作网站电话百度网盘资源搜索入口
  • 网站与网站做外链好吗站长工具端口检测
  • 自己做公司网站百度新闻头条新闻
  • 内蒙古建设厅网站百度免费打开
  • 郑州做网站好的公司企业网站seo案例
  • 替别人做网站google代理
  • 网站建设特效代码推销产品的万能句子
  • wordpress 5.1不提示自动更新百度seo排名优化教程
  • 圣亚科技网站案例谷歌浏览器安卓版下载
  • 网站栏目页面哪里有竞价推广托管
  • 建设网站过程微营销平台有哪些
  • 做影视网站赚钱seo教程 百度网盘
  • wordpress网站文章排版插件网络销售怎么找客源
  • wordpress md做网站seo优化
  • 石家庄长安区网站建设公司百度怎么做广告
  • 建站平台是给谁用的百度com百度一下你
  • List和Map的区别
  • ucharts 搭配uniapp 自定义x轴文字 实现截取显示
  • 【Qt开发】Qt的背景介绍(四)
  • 深入解析MIPI C-PHY (二)C-PHY三线魔术:如何用6种“符号舞步”榨干每一滴带宽?
  • 【c++】leetcode438 找到字符串中所有字母异位词
  • RBAC(Role-Based Access Control,基于角色的访问控制)介绍(一种通过角色来管理用户权限的访问控制模型)