2

タイトル バーの最後の 5 ~ 6 文字がコンテナーの端に近づくにつれて徐々に透明になるようなフェードアウト効果を作成しようとしています。

ページは応答性が高く、任意の幅になる可能性があるため、文字数に基づいてこれを行うことはできません。CSSを透明から色にグラデーションできない限り、背景にグラデーションが既にあるため、その上にグラデーションを重ねることもできません。

私の希望は、次のように、カットオフポイントに最も近い文字を(親要素のoverflow:hiddenによって非表示になる前に)何らかの方法で選択できることです。

ここに画像の説明を入力

「:last」セレクターを使用してこれを実行しようとしましたが、タグのみをターゲットにできます。

$('#scalable:visible:last').css('opacity','.5');

これがjsfiddleでの最初の刺し傷です:http://jsfiddle.net/adamnelson/PgerN/

修正は純粋な css でした:

#scalable {
    background: #408800; /* Old browsers */
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#408800), to(#316600));
    background: -webkit-linear-gradient(#408800 0%, #316600 100%);
    background: -moz-linear-gradient(#408800 0%, #316600 100%);
    background: -o-linear-gradient(#408800 0%, #316600 100%);
    background: linear-gradient(#408800 0%, #316600 100%); /* FF3.6+ */ /* Chrome,Safari4+ */ /* Chrome10+,Safari5.1+ */ /* Opera 11.10+ */ /* IE10+ */ /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#408800', endColorstr='#316600',GradientType=0 ); /* IE6-9 */

    color: white;
    font-size: 20px;
    font-weight: bold;
    margin: 50px auto 0;
    padding: 1em;
    overflow: hidden;
    width: 80%;
    position: relative;
}

#scalable:after {
    content: " ";
    position: absolute;
    height: 100%;
    width: 140px;
    top: 0;
    right: 0;
    background: -moz-linear-gradient(left, rgba(49,102,0,0) 0%, rgba(49,102,0,0.56) 51%, rgba(49,102,0,1) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(49,102,0,0)), color-stop(51%,rgba(49,102,0,0.56)), color-stop(100%,rgba(49,102,0,1)));
    background: -webkit-linear-gradient(left,  rgba(49,102,0,0) 0%,rgba(49,102,0,0.56) 51%,rgba(49,102,0,1) 100%);
    background: -o-linear-gradient(left, rgba(49,102,0,0) 0%,rgba(49,102,0,0.56) 51%,rgba(49,102,0,1) 100%);
    background: -ms-linear-gradient(left, rgba(49,102,0,0) 0%,rgba(49,102,0,0.56) 51%,rgba(49,102,0,1) 100%);
    background: linear-gradient(to right, rgba(49,102,0,0) 0%,rgba(49,102,0,0.56) 51%,rgba(49,102,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00408800', endColorstr='#408800',GradientType=1 );
}

このフィドルに記載されています: http://jsfiddle.net/PgerN/2/

4

2 に答える 2

2

ここで純粋な CSS ソリューションを使用してもよろしいですか?

不透明度のある CSS 水平グラデーションを使用しました。また、:afterセレクターを使用して、現在の構文に別の要素を追加する必要がないようにしました。これは、HTML にアクセスできない場合やアクセスできない場合に非常に便利です。何らかの理由で変更してください..しかし、IE8をサポートしていないこともお伝えしたいと思います。:afterこの場合、要素をネストする必要があります#scalable

デモ

#scalable {
    background-color: #408800;
    color: white;
    font-size: 20px;
    font-weight: bold;
    height: 65px;
    margin: 50px auto 0;
    padding: 0 1em;
    overflow: hidden;
    width: 80%;
    position: relative;
}

#scalable:after {
    content: " ";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    background: -moz-linear-gradient(left,  rgba(64,136,0,0) 0%, rgba(64,136,0,0) 74%, rgba(64,136,0,1) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(64,136,0,0)), color-stop(74%,rgba(64,136,0,0)), color-stop(100%,rgba(64,136,0,1)));
    background: -webkit-linear-gradient(left,  rgba(64,136,0,0) 0%,rgba(64,136,0,0) 74%,rgba(64,136,0,1) 100%);
    background: -o-linear-gradient(left,  rgba(64,136,0,0) 0%,rgba(64,136,0,0) 74%,rgba(64,136,0,1) 100%);
    background: -ms-linear-gradient(left,  rgba(64,136,0,0) 0%,rgba(64,136,0,0) 74%,rgba(64,136,0,1) 100%);
    background: linear-gradient(to right,  rgba(64,136,0,0) 0%,rgba(64,136,0,0) 74%,rgba(64,136,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00408800', endColorstr='#408800',GradientType=1 );
}

必要に応じてグラデーションを調整することができます。この例を見ると、以前のものよりもはるかに引き伸ばされています。

はい、グラデーション コードは恐ろしく見えますが、静かに処理できるグラデーションを作成するための便利なツールがここにあります。

注:これを使用すると、テキストに要素を重ねているときにテキスト選択が無効になるため、ユーザーの利便性を防ぐために、次のようなものを作成できます

#scalable:hover:after {
    display: none;
}

デモ 3 (ホバーしてテキストを選択)

于 2013-07-24T17:23:30.247 に答える
0

それは十分にサポートされておらず、まさにあなたが求めているものではありませんが、この効果のために CSS マスクを使用できるかもしれません:

https://www.webkit.org/blog/181/css-masks/

http://www.html5rocks.com/en/tutorials/masking/adobe/

于 2013-07-24T17:22:25.010 に答える