博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Vue实现购物小球抛物线
阅读量:7048 次
发布时间:2019-06-28

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

1 .shop{ 2      position: fixed; 3      top: 300px; 4      left: 40px; 5  } 6  .ball{ 7      position: fixed; 8      left: 32px; 9      bottom: 22px;10      z-index: 200;11      transition: all 0.4s cubic-bezier(0.49, -0.29, 0.75, 0.41); /*贝塞尔曲线*/12  }13  .inner{14      width: 16px;15      height: 16px;16      border-radius: 50%;17      background-color: rgb(0,160,220);18      transition: all 0.4s linear;19 }20 .cart{21     position: fixed;22     bottom: 22px;23     left: 32px;24     width: 30px;25     height: 30px;26     background-color: rgb(0,160,220);27     color: rgb(255,255,255);28 }
1 
2
    3
  • 4 {
    {item.text}}
    5 {
    {item.price}}
    6 7
  • 8
9
{
{count}}
10
11
12
13
14
15
16
17
18
19
1 

transtion属性可以查看官方文档,具体位置可以通过调试获得。

转载于:https://www.cnblogs.com/xueweijie/p/6929142.html

你可能感兴趣的文章
[LeetCode]N-Queens II
查看>>
[NOIP2013D1]
查看>>
用JS写的放大镜
查看>>
mongodb 安装启动
查看>>
Keil IDE指南.
查看>>
IFsvnadmin svn界面管理工具
查看>>
[转] [Elasticsearch] 数据建模 - 处理关联关系(1)
查看>>
FireMonkey, Android, Windows and PostMessage
查看>>
SCCM客户端推送/卸载
查看>>
Code Signal_练习题_Make Array Consecutive2
查看>>
基于Windows APC写一个简单的多线程并发库
查看>>
C++_异常4-将对象用作异常类型
查看>>
linux 常用命令解压压缩
查看>>
dnsmasq配置
查看>>
ExpandableListView
查看>>
设计模式(单例模式)
查看>>
各种排序算法的Python实现。
查看>>
1.7(学习笔记)过滤器(Fliter)
查看>>
[转载]polya定理再小结
查看>>
mongodb 笔记
查看>>