|
706 | 706 | } |
707 | 707 |
|
708 | 708 | .intro { |
709 | | - background-color: rgba(0, 0, 0, 0.2); |
| 709 | + background-color: rgba(255, 255, 255, 0.2); |
710 | 710 | backdrop-filter: blur(12px); |
711 | 711 | -webkit-backdrop-filter: blur(12px); |
712 | 712 | border: 0px solid rgba(255, 255, 255, 0.18); |
|
844 | 844 | color: rgba(255, 255, 255, 0.6); |
845 | 845 | } |
846 | 846 |
|
| 847 | +#cd_para_wrapper { |
| 848 | + overflow: hidden; |
| 849 | + height: 200px; |
| 850 | + width: 400px; |
| 851 | + position: absolute; |
| 852 | + display: flex; |
| 853 | + flex-direction: column; |
| 854 | + justify-content: right; |
| 855 | + align-items: end; |
| 856 | + right: 50%; |
| 857 | + /*border: 1px black solid;*/ |
| 858 | +} |
| 859 | + |
| 860 | +.cd_para { |
| 861 | + width: 100%; |
| 862 | + height: 50px; |
| 863 | + display: flex; |
| 864 | + justify-content: right; |
| 865 | + align-items: end; |
| 866 | + |
| 867 | + cursor: default; |
| 868 | + animation: ease-out; |
| 869 | + transition: all 0.5s; |
| 870 | + -webkit-transition: all 0.5s; |
| 871 | +} |
| 872 | + |
| 873 | +.cd_para_name { |
| 874 | + background-color: rgba(255, 255, 255, 0.2); |
| 875 | + backdrop-filter: blur(12px); |
| 876 | + -webkit-backdrop-filter: blur(12px); |
| 877 | + border: 0px solid rgba(255, 255, 255, 0.18); |
| 878 | + box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px; |
| 879 | + -webkit-box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px; |
| 880 | + |
| 881 | + height: 50px; |
| 882 | + padding: 5px; |
| 883 | + font-size: 30px; |
| 884 | + font-weight: bold; |
| 885 | + line-height: 40px; |
| 886 | + font-family: Ubuntu, "Microsoft YaHei", serif; |
| 887 | + text-align: center; |
| 888 | + box-sizing: border-box; |
| 889 | + overflow: hidden; |
| 890 | + |
| 891 | + width: 0; |
| 892 | + color: rgba(0, 0, 0, 0); |
| 893 | + |
| 894 | + cursor: default; |
| 895 | + animation: ease-out; |
| 896 | + transition: all 0.5s; |
| 897 | + -webkit-transition: all 0.5s; |
| 898 | +} |
| 899 | + |
| 900 | +.cd_para_name.show0 { |
| 901 | + width: 40%; |
| 902 | + color: rgba(0, 0, 0, 0.6); |
| 903 | + transition: all 0.5s, width 0.5s 0.6s, color 0.3s 0.9s; |
| 904 | + -webkit-transition: all 0.5s, width 0.5s 0.6s, color 0.3s 0.9s; |
| 905 | +} |
| 906 | + |
| 907 | +.cd_para_name.show1 { |
| 908 | + width: 40%; |
| 909 | + color: rgba(0, 0, 0, 0.6); |
| 910 | + transition: all 0.5s, width 0.5s 0.7s, color 0.3s 1s; |
| 911 | + -webkit-transition: all 0.5s, width 0.5s 0.7s, color 0.3s 1s; |
| 912 | +} |
| 913 | + |
| 914 | +.cd_para_name.active{ |
| 915 | + background-color: rgba(255, 255, 255, 0.7); |
| 916 | +} |
| 917 | + |
| 918 | +.cd_para_value { |
| 919 | + background-color: rgba(255, 255, 255, 0.4); |
| 920 | + backdrop-filter: blur(12px); |
| 921 | + -webkit-backdrop-filter: blur(12px); |
| 922 | + border: 0px solid rgba(255, 255, 255, 0.18); |
| 923 | + box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px; |
| 924 | + -webkit-box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px; |
| 925 | + |
| 926 | + height: 50px; |
| 927 | + outline: none; |
| 928 | + padding: 5px; |
| 929 | + font-size: 30px; |
| 930 | + font-weight: bold; |
| 931 | + line-height: 40px; |
| 932 | + font-family: Ubuntu, "Microsoft YaHei", serif; |
| 933 | + text-align: center; |
| 934 | + box-sizing: border-box; |
| 935 | + overflow: hidden; |
| 936 | + |
| 937 | + width: 0; |
| 938 | + color: rgba(0, 0, 0, 0); |
| 939 | + |
| 940 | + cursor: text; |
| 941 | + animation: ease-out; |
| 942 | + transition: all 0.5s; |
| 943 | + -webkit-transition: all 0.5s; |
| 944 | +} |
| 945 | + |
| 946 | +.cd_para_value.show0 { |
| 947 | + width: 60%; |
| 948 | + color: rgba(0, 0, 0, 0.6); |
| 949 | + transition: all 0.5s, width 0.5s 0.6s, color 0.3s 0.9s; |
| 950 | + -webkit-transition: all 0.5s, width 0.5s 0.6s, color 0.3s 0.9s; |
| 951 | +} |
| 952 | + |
| 953 | +.cd_para_value.show1 { |
| 954 | + width: 60%; |
| 955 | + color: rgba(0, 0, 0, 0.6); |
| 956 | + transition: all 0.5s, width 0.5s 0.7s, color 0.3s 1s; |
| 957 | + -webkit-transition: all 0.5s, width 0.5s 0.7s, color 0.3s 1s; |
| 958 | +} |
| 959 | + |
847 | 960 | .go { |
848 | 961 | background-color: rgba(0, 0, 0, 0.2); |
849 | 962 | backdrop-filter: blur(12px); |
|
0 commit comments