"img.only-one-img { width: 100%; /* 图片与上下模块距离,第一个值为上,第三个值为下 */ margin: 0px 0 0px; } .flex { display: flex; } .bg-cover { background-size: cover; } .pc\:none { display: none; } .pc\:flex { display: flex; } @media (max-width:750px) { .mb\:flex { display: flex; } .mb\:none { display: none; } .mb\:block { display: block; } } /* 背景轮播图样式 */ .bg-swiper { width: 100%; position: relative; overflow: hidden; /* 模块与下方距离 */ margin-bottom: 10px; line-height: 1.25; } .bg-swiper-container { width: 100%; height: 100%; } .bg-swiper-container img { width: 100%; height: 100%; object-fit: cover; transform: translateX(0); transition: transform .4s; } .bg-swiper-text { position: absolute; /* pc文本框与上方距离 */ top: 50%; transform: translateY(-50%); /* pc文本框与左边距离 */ left: 80px; /* 文本框背景颜色与透明度 */ background-color: rgba(200, 200, 200, 0.8); z-index: 4; /* 文本框内边距,第一个值是上下,第二个值是左右 */ padding: 40px 40px; /* 文本框长度 */ width: 400px; box-sizing: border-box; } .bg-swiper-title { /* pc标题大小 */ font-size: 18px; } .bg-swiper-dis { /* pc简述大小 */ font-size: 14px; } .arrow-l, .arrow-r { position: absolute; z-index: 3; top: 50%; cursor: pointer; user-select: none; } .arrow-l i, .arrow-r i { width: 24px; height: 24px; display: block; position: relative; } :root { /* 背景轮播图箭头颜色 */ --bg-swiper-arrow-color: #000000; } .arrow-l i::before, .arrow-r i::before { content: """"; display: block; width: 24px; height: 2px; background-color: var(--bg-swiper-arrow-color); position: absolute; top: 0; } .arrow-l i::after, .arrow-r i::after { content: """"; display: block; width: 2px; height: 24px; background-color: var(--bg-swiper-arrow-color); position: absolute; right: 0; } .arrow-l { transform: rotateZ(-135deg); left: 20px; } .arrow-r { transform: rotateZ(45deg); right: 20px; } .bg-swiper-point { width: 100%; justify-content: center; position: absolute; /* 指示点与下方距离 */ bottom: 20px; z-index: 4; } .bg-swiper-point span { /* 指示点大小,两个值都需要调整为一样大小才是圆形 */ width: 12px; height: 12px; border-radius: 50%; /* 指示点颜色 */ background-color: #b0b8c1; /* 指示点左右距离,只需调整第二个值 */ margin: 0 8px; } .bg-swiper-point span.on { /* 选中指示点颜色 */ background-color: #404040; } @media (max-width:750px) { .bg-swiper { width: 100%; height: auto; } .bg-swiper-text { width: 100%; position: static; transform: translate(0); } .bg-swiper-point { position: static; /* M端指示点与上方距离 */ margin-top: 12px; } .bg-swiper-title { /* M端标题大小 */ font-size: 18px; } .bg-swiper-dis { /* M端简述大小 */ font-size: 14px; } } /* 背景轮播图样式 END */ .flex { display: flex; } .bg-cover { background-size: cover; } .pc\:none { display: none; } .pc\:flex { display: flex; } @media (max-width:750px) { .mb\:flex { display: flex; } .mb\:none { display: none; } .mb\:block { display: block; } } /* 高级导航轮播图样式 */ .advanced-swiper { width: 100%; position: relative; overflow: hidden; /* 模块与下方距离 */ margin-bottom: 10px; line-height: 1.25; } .advanced-nav { width: 100%; position: absolute; /* pc导航与上方距离 */ top: 40px; justify-content: center; z-index: 5; } .advanced-nav-item { /* pc导航左右两边距离,只需调整第二个值 */ margin: 0 20px; /* pc导航内边距,第一个值是上下,第二个值是左右 */ padding: 4px 20px; /* pc导航圆角大小 */ border-radius: 100px; cursor: pointer; /* pc导航边框大小与颜色 */ border: 1px solid black; /* pc端导航字体大小 */ font-size: 16px; } .advanced-nav-item.on { /* 选中导航背景颜色 */ background-color: black; /* 选中导航字体颜色 */ color: white; } .advanced-swiper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; transform: translateX(0); } .advanced-swiper-container { position: relative; width: 100%; height: 100%; } .advanced-swiper-text { position: absolute; /* 文本与上方距离 */ top: 30%; /* 文本与左边距离 */ left: 60px; /* 文本框长度 */ width: 400px; /* 文本框内边距,第一个值是上下,第二个值是左右 */ padding: 20px 20px; z-index: 3; /* 文本框背景颜色 */ background-color: #92929270; /* 文本字体颜色 */ color: #ffffff; } .advanced-swiper-small-title { /* pc端小标题大小 */ font-size: 16px; } .advanced-swiper-title { /* pc端标题大小 */ font-size: 18px; /* pc端标题上下距离,第一个值是上,第三个值是下 */ margin: 8px 0 8px; } .advanced-swiper-dis { /* pc端描述大小 */ font-size: 14px; } @media (max-width:750px) { .advanced-swiper { width: 100%; height: auto; position: relative; overflow: hidden; } .advanced-nav, .advanced-swiper-text, .advanced-nav { position: static; text-align: center; width: 100%; box-sizing: border-box; } .advanced-nav { flex-direction: column; align-items: center; } .advanced-nav-item { /* M端导航上下距离,只需调整第一个值 */ margin: 8px 0; /* M端导航长度 */ width: 60%; } .advanced-swiper-small-title { /* M端小标题大小 */ font-size: 16px; } .advanced-swiper-title { /* M端标题大小 */ font-size: 18px; } .advanced-swiper-dis { /* M端描述大小 */ font-size: 14px; } .advanced-nav-item { /* M端导航字体大小 */ font-size: 16px; } } /* 高级导航轮播图样式 END */ Flip-top design Serve as a simple table Built-in cover retarder to protect the electric keyboard from dust and prevent hand pinching. FURNITURE OR PIANOFRO ALL AGES Express Yourself with Donner Responsive Hammer-Action Keyboard Style meets substance with the DDP-90 digital piano 88 key weighted, which combines its minimalist look with heavyweight keyboar that makes it a dream to play.Just as acoustic pianos utilise heavier bass hammers and lighter treble hammers, DDP-90 weighted keyboard piano has adjustable touch response, precisely matching the finger strength changes. Such details provide greater stability during fortissimo passages, while preserving delicate pianissimo control, to satisfy the demands of beginner pianist. Sound - Rich, Dynamic, Expressive Both the French DREAM sound source solution and the DONNER Custom Development GM Tone Libraryare are faithfully reproduced with full 88-key sampling, establishing a new standard in afforable-priced digital piano tonal quality.Maximum 128 polyphony reduce lost notes. Optimised sustain curve for playing notes with more emotion.Grand Feel Pedal System: Soft Pedal - make the tone soft; Sostenuto Pedal - decrease the damper effect by pressing pedal halfway; Sustain Pedal - continue the previous tone. Uncluttered Appearance, Compact Cabinet Design The DDP-90’s simple yet attractive cabinet incorporates double side arms and wooden toe blocks for additional stability.It is also a relatively compact instrument, making it well-suited to apartments and other narrow spaces.The digital piano 88 key weighted features a cover and the built-in cover retarder to protect the electric keyboard from dust and prevent hand pinching.The music rest that can be folded flat when not required. Designed for compact home use, the DDP-90 electric piano is smaller and lighter than a normal piano without compromising on sound quality. Its excellent flip cover comes with a slow closing function to protect your hands and keyboard, while the headphone mode is perfect for late-night practice or where speakers are not suitable without disturbing others.The DDP-90 offers multiple device connecting options, including USB-MP3 playing, PC/Laptop/Tablet/Smartphone USB MIDI connecting, external sound support, and headphone use, making it versatile for various music applications.With 128-note polyphony, the DDP-90 offers stunning and realistic-sounding performances, while the metal triple-pedal system allows for soft, sostenuto, and sustain pedal functions.Rely on Donner's strong and efficient research & development team, dedicated to creating innovative and high-quality instruments that inspire professionals and beginners alike. Make music that you love and music that excites you with the Donner DDP-90 weighted 88 key electric piano. Start your musical journey today! --- Tips Must See: The headphone jack is under the keyboard. (6.35mm - 1/4 inch)The triple pedals jack is under the keyboard. (5-pin)If you are close to a TV or in a complicated environment, there will be a certain chance that the piano's tone and resonance will be affected. Please keep a suitable open space.The product is unassembled when it arrives, please assemble the product according to the instructions. (If you find any parts are missing, please let us know in time and we will handle it for you.) Package List 1 x Donner DDP-90 Piano 1 x Power Adapter 1 x Triple Pedal 1 x Pedal Plate Bridge 1 x Left and Right Supporting Plate 2 x Left and Right Supporting Column 1 x Black Fixed Plate 8 Spiles and 16 Screws"
