0

私は自分自身のためのプロジェクトに取り組んでいます。ホバートランジションで画像を作成しました。

すべてのブラウザで完璧に動作します。しかし、iPadではありません。なんで?何らかの理由で、テキストのために画像をクリックできません。それがなぜなのかわかりません。私は2つの例を得ました:

例 1:
http://jewelbeast.com/imghover/ ipad でこの 1 をテストし、img をクリックした場合。何も起こらないことがわかります。Centered のテキストは、vertical aligntext-align: を使用するためです。

例 2
http://jewelbeast.com/imghover/test.html iPadでこの 1 をテストする場合は、画像の右側をクリックできます。右側にテキストがないためです。

CSS

div.hover-img-vertical-smallborder{
    margin-top: 25px;
    height: 400px;
    width: 228px;
    float: left;
    display: block;
    margin-left: 10px;
}

div.hover-img-vertical-smallborder section{
    position: relative;
    width: 217px;
    height: 350px;
    border: 5px solid white;
    outline: 1px solid #c8c8c8;
    float:left;
    text-align: center;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;

    overflow: hidden;
    background: #dfdfdf;
}

div.hover-img-vertical-smallborder section:hover{
    height: 380px;
    margin-top: -15px;
}


div.hover-img-vertical-smallborder section img{
    position: absolute;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

div.hover-img-vertical-smallborder section .text{
    position: absolute;
    top: 0;
    left: 0;
    display: table;
    height: 100%;
}

div.hover-img-vertical-smallborder section span{
    width: 200px;
    display: table-cell;
    vertical-align: middle;
    padding: 20px;
    text-align: center;
    color: black;

    opacity: 0;

    text-shadow: 1px 1px 0px rgba(255,255,255,0.3);

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

div.hover-img-vertical-smallborder section:hover span{
    opacity: 1;
}

div.hover-img-vertical-smallborder section:hover img{
    opacity: 0.5;
}

div.hover-img-vertical-smallborder section span h1{
    width: 100%;
    text-align: center;

    font-size: 18px;
    font-family: Verdana, sans-serif;
    font-weight: bold;
    line-height: 25px;
    margin-bottom: 3px;
}

div.hover-img-vertical-smallborder section span p{
    width: 100%;
    text-align: center;

    font-size: 10px;
    font-family: Verdana, sans-serif;
    font-weight: bold;
    margin-bottom: 10px;
}

div.hover-img-vertical-smallborder section span a.button{
    display: table;
    margin: 0px auto;

    text-align: center;
    color: white;
    text-shadow: none !important;
    text-decoration: none;

    font-size: 10px;
    font-family: Verdana, sans-serif;
    font-weight: bold;

    padding: 9px 10px 11px 10px;
    border: 1px solid #616161;
    outline: 1px solid #000000;

    background: #494949; /* Old browsers */
    background: -moz-linear-gradient(top, #494949 1%, #3a3a3a 94%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#494949), color-stop(94%,#3a3a3a)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #494949 1%,#3a3a3a 94%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #494949 1%,#3a3a3a 94%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #494949 1%,#3a3a3a 94%); /* IE10+ */
    background: linear-gradient(to bottom, #494949 1%,#3a3a3a 94%); /* W3C */
}

div.hover-img-vertical-smallborder section span a.entire{
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
}

HTML

    <div class="hover-img-vertical-smallborder">
        <section class="bg-black"> <!-- bg-black is a black background on hover normal is grey -->
            <img src="img/img_5.jpg" style="left: -50%;"/>
            <div class="text">
                <span>
                    <h1>This is a title</h1>
                </span>
            </div>
        </section>
    </div>

誰かがこれを理解できることを願っています。

ありがとう。

4

1 に答える 1

1

タッチ デバイスで発生するホバー イベントはありません。JS で次のいずれかのイベントを使用する必要があります。

touchstart
touchmove
touchend
touchcancel
于 2013-06-01T10:45:07.893 に答える