css3 animation 学习
css3中可以实现动画效果,主要是通过css3中新增加的属性(transform , transition,animation )来完成。
他们的详细解释可以参考 W3CSCHOOL
下面是效果图:
类似于tab选项卡,当点击某个input的时候,就以动画的效果来显示对应的内容区域。
- <html lang="zh" >
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <style>
- body{
- overflow: hidden;
- }
- .st-container {
- position: absolute;
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- font-family: Arial, sans-serif;
- }
- /*put the “navigation” at the top of the page by giving it a fixed position*/
- .st-container > input,
- .st-container > a {
- position: fixed;
- top: 0;
- width: 20%;
- cursor: pointer;
- font-size: 16px;
- height: 34px;
- line-height: 34px;
- }
- .st-container > input {
- opacity: 0;
- z-index: 1000;
- }
- .st-container > a {
- z-index: 10;
- font-weight: 700;
- background: #e23a6e;
- color: #fff;
- text-align: center;
- text-shadow: 1px 1px 1px rgba(151,24,64,0.2);
- text-decoration: none;
- }
- /*It will have the same background color like the link elements:*/
- .st-container:after {
- content: '';
- position: fixed;
- width: 100%;
- height: 34px;
- background: #e23a6e;
- z-index: 9;
- top: 0;
- }
- /*give input and links respective left values*/
- #st-control-1, #st-control-1 + a {
- left: 0;
- }
- #st-control-2, #st-control-2 + a {
- left: 20%;
- }
- #st-control-3, #st-control-3 + a {
- left: 40%;
- }
- #st-control-4, #st-control-4 + a {
- left: 60%;
- }
- #st-control-5, #st-control-5 + a {
- left: 80%;
- }
- /*define a “selected” state for the link elements.*/
- .st-container > input:checked + a,
- .st-container > input:checked:hover + a{
- background: #821134;
- }
- /*add a little triangle using the pseudo-class :after and give it the same color:*/
- .st-container > input:checked + a:after,
- .st-container > input:checked:hover + a:after{
- top: 100%;
- border: solid transparent;
- content: '';
- height: 0;
- width: 0;
- position: absolute;
- pointer-events: none;
- border-top-color: #821134;
- border-width: 20px;
- left: 50%;
- margin-left: -20px;
- }
- /*define a hover state for the link element:*/
- .st-container > input:hover + a{
- background: #AD244F;
- }
- .st-container > input:hover + a:after {
- border-bottom-color: #AD244F;
- }
- /*define scroll panel style*/
- .st-scroll,
- .st-panel {
- position: relative;
- width: 100%;
- height: 100%;
- }
- .st-scroll {
- top: 0;
- left: 0;
- -webkit-transition: all 0.6s ease-in-out;
- /* Let's enforce some hardware acceleration */
- -webkit-transform: translate3d(0, 0, 0);
- -webkit-backface-visibility: hidden;
- border: solid 1px #ccc;
- }
- .st-panel{
- background: #fff;
- overflow: hidden;
- }
- /**define the positions for the st-scroll wrapper for each checked radio button*/
- #st-control-1:checked ~ .st-scroll {
- -webkit-transform: translateY(0%);
- background-color: green;
- }
- #st-control-2:checked ~ .st-scroll {
- -webkit-transform: translateY(-100%);
- background-color: green;
- }
- #st-control-3:checked ~ .st-scroll {
- -webkit-transform: translateY(-200%);
- background-color: green;
- }
- #st-control-4:checked ~ .st-scroll {
- -webkit-transform: translateY(-300%);
- background-color: green;
- }
- #st-control-5:checked ~ .st-scroll {
- -webkit-transform: translateY(-400%);
- background-color: green;
- }
- #st-control-1:checked ~ .st-scroll #st-panel-1 h2,
- #st-control-2:checked ~ .st-scroll #st-panel-2 h2,
- #st-control-3:checked ~ .st-scroll #st-panel-3 h2,
- #st-control-4:checked ~ .st-scroll #st-panel-4 h2,
- #st-control-5:checked ~ .st-scroll #st-panel-5 h2{
- -webkit-animation: moveDown 1.6s ease-in-out 1.2s backwards;
- }
- /** define animation for the scroll panel*/
- @keyframes moveDown{
- 0% {
- -webkit-transform: translateY(-40px);
- opacity: 0;
- }
- 100% {
- -webkit-transform: translateY(0px);
- opacity: 1;
- }
- }
- .st-panel h2 {
- color: #e23a6e;
- text-shadow: 1px 1px 1px rgba(151,24,64,0.2);
- position: absolute;
- font-size: 54px;
- font-weight: 900;
- width: 80%;
- left: 10%;
- text-align: center;
- line-height: 50px;
- margin: -70px 0 0 0;
- padding: 0;
- top: 50%;
- -webkit-backface-visibility: hidden;
- }
- .st-panel p {
- position: absolute;
- text-align: center;
- font-size: 16px;
- line-height: 22px;
- color: #8b8b8b;
- z-index: 2;
- padding: 0;
- width: 50%;
- left: 25%;
- top: 50%;
- margin: 10px 0 0 0;
- -webkit-backface-visibility: hidden;
- }
- </style>
- <body>
- <div class="container">
- <div class="st-container">
- <input type="radio" name="radio-set" checked="checked" id="st-control-1">
- <a href="#st-panel-1">Serendipity</a>
- <input type="radio" name="radio-set" id="st-control-2">
- <a href="#st-panel-2">Happiness</a>
- <input type="radio" name="radio-set" id="st-control-3">
- <a href="#st-panel-3">Tranquillity</a>
- <input type="radio" name="radio-set" id="st-control-4">
- <a href="#st-panel-4">Positivity</a>
- <input type="radio" name="radio-set" id="st-control-5">
- <a href="#st-panel-5">Passion</a>
- <div class="st-scroll">
- <!-- Placeholder text from http://hipsteripsum.me/ -->
- <section class="st-panel" id="st-panel-1">
- <h2>Serendipity</h2>
- <p>Banksy adipisicing eiusmod banh mi sed. Squid stumptown est odd future nisi, commodo mlkshk pop-up adipisicing retro.</p>
- </section>
- <section class="st-panel st-color" id="st-panel-2">
- <h2>Happiness</h2>
- <p>Art party readymade beard labore cosby sweater culpa. Art party whatever incididunt, scenester umami polaroid tofu.</p>
- </section>
- <section class="st-panel" id="st-panel-3">
- <h2>Tranquillity</h2>
- <p>Sint aute occaecat id vice. Post-ironic fap pork belly next level godard, id fanny pack williamsburg forage truffaut.</p>
- </section>
- <section class="st-panel st-color" id="st-panel-4">
- <h2>Positivity</h2>
- <p>Mixtape fap leggings art party, butcher authentic farm-to-table you probably haven't heard of them do labore cosby sweater.</p>
- </section>
- <section class="st-panel" id="st-panel-5">
- <h2>Passion</h2>
- <p>Fixie ad odd future polaroid dreamcatcher, nesciunt carles bicycle rights accusamus mcsweeney's mumblecore nulla irony.</p>
- </section>
- </div><!-- // st-scroll -->
- </div><!-- // st-container -->
- </div>
- </body>
- </html>
css3 animation 学习的更多相关文章
- CSS3 Animation学习笔记
Internet Explorer 9,以及更早的版本, 不支持 @keyframe 规则或 animation 属性. Internet Explorer 10.Firefox 以及 Opera 支 ...
- 实现了一个百度首页的彩蛋——CSS3 Animation简介
在百度搜索中有这样一个彩蛋:搜索“旋转”,“跳跃”,“反转”等词语,会出现相应的动画效果(搜索“反转”后的效果).查看源码可以发现,这些效果正是通过CSS3的animation属性实现的. 实现这个彩 ...
- css3 animation实现风车转动
项目中经常有用到动画效果,比如Loading.风车转动等等.最简单的办法是使用gif,但是gif在半透明背景下有白边,体验不友好,好在现在可以使用css3的anmiation来实现动画效果,极大的提升 ...
- css3 animation动画特效插件的巧用
这一个是css3 animation动画特效在线演示的网站 https://daneden.github.io/animate.css/ 下载 animate.css文件,文件的代码很多,不过要明白 ...
- CSS3 Animation Cheat Sheet:实用的 CSS3 动画库
CSS3 Animation Cheat Sheet 是一组预设的动画库,为您的 Web 项目添加各种很炫的动画.所有你需要做的是添加样式表到你的网站,为你想要添加动画效果的元素应用预制的 CSS 类 ...
- Android Animation学习(六) View Animation介绍
Android Animation学习(六) View Animation介绍 View Animation View animation系统可以用来执行View上的Tween animation和F ...
- Android Animation学习(五) ApiDemos解析:容器布局动画 LayoutTransition
Android Animation学习(五) ApiDemos解析:容器布局动画 LayoutTransition Property animation系统还提供了对ViewGroup中的View改变 ...
- Android Animation学习(四) ApiDemos解析:多属性动画
Android Animation学习(四) ApiDemos解析:多属性动画 如果想同时改变多个属性,根据前面所学的,比较显而易见的一种思路是构造多个对象Animator , ( Animator可 ...
- Android Animation学习(三) ApiDemos解析:XML动画文件的使用
Android Animation学习(三) ApiDemos解析:XML动画文件的使用 可以用XML文件来定义Animation. 文件必须有一个唯一的根节点: <set>, <o ...
随机推荐
- bzoj4456: [Zjoi2016]旅行者
题目链接 bzoj4456: [Zjoi2016]旅行者 题解 网格图,对于图分治,每次从中间切垂直于长的那一边, 对于切边上的点做最短路,合并在图两边的答案. 有点卡常 代码 #include< ...
- c# -- 解决vs使用本地iis运行项目支持局域网访问的问题(附防火墙端口开放步骤)
用vs运行项目时,有时候需要局域网内不同设备进行访问调试~ 以前解决过这个问题,这次用了部新电脑,问题又出现了,改了配置还是不行,原来还差了一步防火墙端口开放访问. 于是写了这篇分享,备忘~ 操作步骤 ...
- AutoMapper实际项目运用
AutoMapper是对象到对象的映射工具.在完成映射规则之后,AutoMapper可以将源对象转换为目标对象. 配置AutoMapper映射规则 AutoMapper是基于约定的,因此在实用映射之前 ...
- ARM JTAG 20P to Cortex JTAG 10P
- TimingTool - The Timing Diagram Editor
TimingTool - The Timing Diagram TimingTool is designed to give electronics engineers an easy to use ...
- 基于设备树的controller学习(1)
作者 彭东林pengdonglin137@163.com 平台 TQ2440Linux-4.10.17 概述 在设备树中我们经常见到诸如"#clock-cells"."# ...
- C#中使用throw和throw ex抛出异常的区别
通常,我们使用try/catch/finally语句块来捕获异常,就像在这里说的.在抛出异常的时候,使用throw和throw ex有什么区别呢? 假设,按如下的方式调用几个方法: →在Main方法中 ...
- tms mqtt
tms mqtt 功能概述 MQTT客户端组件 可用于VCL,FMX和LCL应用 支持Windows,iOS,Android,macOS,Linux,Raspberry Pi 实现完整的MQTT规范, ...
- C#编程(三十)----------泛型结构,泛型方法,泛型委托
泛型结构 泛型结构和泛型类几乎是一直的,只是泛型结构没有继承的特性..NET平台提供的一个泛型结构是(可空类型)Nullablle<T>.可空类型的引入,主要是为了解决数据库语言中的数字与 ...
- Android Activity之间切换出现短暂黑屏的处理方法
转自:http://www.cppblog.com/fwxjj/archive/2013/01/14/197259.html 在默认情况下,Android应用程序启动时,会有一个黑屏的时期,原因是,首 ...