123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- .fingeringContainer {
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: space-evenly;
- align-items: center;
- padding: 0 10px 4px 10px;
- position: relative;
- }
- .emptyDom {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background: transparent;
- z-index: 999;
- }
- .vertical {
- position: relative;
- padding: 10px 0 10px 0;
- //box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 10px;
- .imgs {
- flex: 1;
- }
- // &::before {
- // content: '';
- // position: absolute;
- // left: 0;
- // top: 0;
- // right: 0;
- // height: 30px;
- // background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
- // z-index: 1;
- // }
- // &::after {
- // content: '';
- // position: absolute;
- // left: 0;
- // bottom: 0;
- // right: 0;
- // height: 30px;
- // background: linear-gradient(360deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
- // z-index: 1;
- // }
- &.hulusiTop {
- padding-top: 20px;
- }
- }
- .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-evenly;
- align-items: center;
- height: 100%;
- flex-shrink: 0;
- }
- // 萨克斯
- :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;
- }
- }
- .transTizhi {
- position: absolute;
- top: -20px;
- }
- .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;
- }
- }
- }
|