有木有哪位大神有最新网站⊙▽⊙帮我介绍一下Schlike

有木有哪位大神⊙▽⊙帮我介绍一下Schlike这个牌子【小号吧】_百度贴吧
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&签到排名:今日本吧第个签到,本吧因你更精彩,明天继续来努力!
本吧签到人数:0成为超级会员,使用一键签到本月漏签0次!成为超级会员,赠送8张补签卡连续签到:天&&累计签到:天超级会员单次开通12个月以上,赠送连续签到卡3张
关注:7,783贴子:
有木有哪位大神⊙▽⊙帮我介绍一下Schlike这个牌子收藏
如题,对这个品牌不了解,求解求解啊!
苏宁易购小号电饭煲,好货超值购,品牌直降+满减优惠,更有爆款5折起!小号电饭煲苏宁易购,全国联保,支持货到付款,7天24小时1对1贴心服务!
好像不错的一个品牌,我刚刚弄了个号嘴
被雅马哈收购
台湾原产的品牌,性价比还不错
schilke 一直没被yamaha 收购!扯吧!
schilke 是老牌美国乐器,还台湾!
水一句巴哈是天津产的
雅马哈从没收购过肖肯,肖肯美国的很牛的一个小号品牌,技术一流,70-80年代,给予雅马哈技术支持,很多雅马哈第一代高端产品几乎和肖肯一模一样,如果国内厂家能像小日本虚心学习别人好的技术,不至于现在这般景象,中国的厂家也就虎虎中国人吧,在国外口碑极差,乱搞铜材配比,乱搞乐器数据。
,官网看看吧,这个工厂一直在美国芝加哥,从来没有在国外代工啥的。质量非常过硬的,不过价格很贵,不配号箱,不配号嘴。小号特点是,1)所有小号都是反套管设计,2)降B小号喇叭都是124毫米,普通小号的是123毫米,3)小号整体轻薄,手感轻,但是多大力气都吹不炸。4)立键的降E小号,高音小号是行业标准,只被模仿,没法超越。是全世界录音师的最爱。
他们的piccolo和bE超好。比较擅长轻的乐器,做过一个重的系列口碑不太好,价格挺贵的。
登录百度帐号May 2, 2011
Way back in the day, you could
(5.5) with non-standard CSS properties like scrollbar-base-color which you would use on the element that scrolls (like the &body&) and do . IE dropped that.
These days, customizing scrollbars is back, but it's WebKit this time. It's a bit better now, because the properties are vendor-prefixed (e.g. ::-webkit-scrollbar) and use the "". This has been around for a couple of years. David Hyatt
in early 2009 and put together an example page of just about
you could ever want.
The Different Pieces
These are the pseudo elements themselves. The actual parts of the scrollbars.
::-webkit-scrollbar
{ /* 1 */ }
::-webkit-scrollbar-button
{ /* 2 */ }
::-webkit-scrollbar-track
{ /* 3 */ }
::-webkit-scrollbar-track-piece
{ /* 4 */ }
::-webkit-scrollbar-thumb
{ /* 5 */ }
::-webkit-scrollbar-corner
{ /* 6 */ }
::-webkit-resizer
{ /* 7 */ }
The Different States
These are the pseudo class selectors. They allow for more specific selection of the parts, like when the scrollbar is in different states.
:horizontal
:decrement
:increment
:double-button
:single-button
:no-button
:corner-present
:window-inactive
I'm going to steal this whole section from
on the WebKit blog because it explains each part well:
:horizontal – The horizontal pseudo-class applies to any scrollbar pieces that have a horizontal orientation.
:vertical – The vertical pseudo-class applies to any scrollbar pieces that have a vertical orientation.
:decrement – The decrement pseudo-class applies to buttons and track pieces. It indicates whether or not the button or track piece will decrement the view’s position when used (e.g., up on a vertical scrollbar, left on a horizontal scrollbar).
:increment – The increment pseudo-class applies to buttons and track pieces. It indicates whether or not a button or track piece will increment the view’s position when used (e.g., down on a vertical scrollbar, right on a horizontal scrollbar).
:start – The start pseudo-class applies to buttons and track pieces. It indicates whether the object is placed before the thumb.
:end – The end pseudo-class applies to buttons and track pieces. It indicates whether the object is placed after the thumb.
:double-button – The double-button pseudo-class applies to buttons and track pieces. It is used to detect whether a button is part of a pair of buttons that are together at the same end of a scrollbar. For track pieces it indicates whether the track piece abuts a pair of buttons.
:single-button – The single-button pseudo-class applies to buttons and track pieces. It is used to detect whether a button is by itself at the end of a scrollbar. For track pieces it indicates whether the track piece abuts a singleton button.
:no-button – Applies to track pieces and indicates whether or not the track piece runs to the edge of the scrollbar, i.e., there is no button at that end of the track.
:corner-present – Applies to all scrollbar pieces and indicates whether or not a scrollbar corner is present.
:window-inactive – Applies to all scrollbar pieces and indicates whether or not the window containing the scrollbar is currently active. (In recent nightlies, this pseudo-class now applies to ::selection as well. We plan to extend it to work with any content and to propose it as a new standard pseudo-class.)
All together now
These pseudo elements and pseudo class selectors work together. Here are some random examples:
::-webkit-scrollbar-track-piece:start {
/* Select the top half (or left half) or scrollbar track individually */
::-webkit-scrollbar-thumb:window-inactive {
/* Select the thumb when the browser window isn't in focus */
::-webkit-scrollbar-button:horizontal:decrement:hover {
/* Select the down or left scroll button when it's being hovered by the mouse */
Very Simple Example
To make a really simple custom scrollbar we could do this:
::-webkit-scrollbar {
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10
::-webkit-scrollbar-thumb {
border-radius: 10
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
In which we'd get this on a simple div with vertically overflowing text:
In The Wild
Check out the very subtle and nice scrollbars on Tim Van Damme's blog
(Update September 2012: Tim's site no longer uses this design):
The particularly nice bit here is that the scrollbar is on the body element, yet the scrollbar isn't stuck to the top, bottom, or right edge of the browser window as scroll bars normally are. I made a test page with copy-and-pasteable code to achieve that a similar effect:
On , they use custom scollbars on code snippets which are also pretty nice. They are less visually intense and so don't fight as much with the code highlighting.
Dion Almaer has a useful little
for scrollbars with all the parts in bold colors to see what's what. (from )
on Beautiful Pixels.
Google Wave
with them back when that was still a thing.
for replicating OS X Lion scrollbars.
icon-anchoricon-closeicon-emailicon-linkicon-logo-staricon-menuicon-star}

我要回帖

更多关于 一下哪位大神没有参与 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信