| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- .fingeringContainer{
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: space-evenly;
- align-items: center;
- padding: 0 10px 6px 10px;
- }
- .vertical{
- padding: 10px 6px 10px 0;
- box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 10px;
- .imgs{
- width: 70%;
- }
- }
- .imgs{
- position: relative;
- width: 84%;
- height: 100%;
- & > img {
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- display: block;
- max-width: 100%;
- max-height: 100%;
- }
- }
- .rightContent{
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: center;
- height: 100%;
- }
- // 萨克斯
- :global(.saxophone){
- padding: 10px 0;
- .imgs{
- width: 100%;
- }
- .rightContent{
- position: absolute;
- right: 6px;
- height: 90%;
- }
- }
- //圆号
- :global(.horn){
- padding: 10px 4px;
- .imgs{
- width: 100%;
- }
- .rightContent{
- position: absolute;
- right: 10px;
- height: 100%;
- }
- }
- //上低音号
- :global(.up-bass-horn),
- :global(.tuba){
- padding: 10px 4px;
- .imgs{
- width: 100%;
- }
- .rightContent{
- position: absolute;
- right: 10px;
- height: 100%;
- }
- }
- .yidiao{
- width: 30px;
- color: var(--van-primary-color);
- font-size: 12Px;
- text-align: center;
- opacity: 0;
- }
- .tizhi{
- width: 30px;
- height: 30px;
- text-align: center;
- line-height: 30px;
- border-radius: 100%;
- background-color: var(--van-primary-color);
- color: #fff;
- box-shadow: 0 0 10px rgba(0, 0, 0, .05);
- font-size: 12Px;
- opacity: 0;
- pointer-events: none;
- &:active{
- opacity: .8;
- }
- }
- .canDisplay{
- opacity: 1;
- pointer-events: initial;
- }
- @keyframes activeopacity {
- 0% {transforopacitym: 0;}
- 100% {opacity: 1;}
- }
- @keyframes leftrotates {
- 0% {transform: rotate(0deg);}
- 50% {transform: rotate(-10deg);}
- 100% {transform: rotate(-10deg);}
- }
- @keyframes rightrotates {
- 0% {transform: rotate(0deg);}
- 50% {transform: rotate(5deg);}
- 100% {transform: rotate(5deg);}
- }
- :global{
- .small-drum{
- // transform: ;
- img[data-index="active"] :local {
- animation: activeopacity .2s;
- animation-delay: .3s;
- transform-origin: 0px 0px;
- }
- img[data-index="left"] :local {
- // transform: rotate(-10deg);
- animation: leftrotates .5s;
- transform-origin: 0px 0px;
- }
- img[data-index="right"] :local {
- // transform: rotate(5deg);
- animation: rightrotates .5s;
- transform-origin: 0px 0px;
- }
- }
- }
- :global{
- .piccolo{
- margin-top: 0;
- // padding: 0 10px;
- // padding-right: 40px;
- >.piccolo{
- // padding: 0!important;
- }
- }
- }
|