色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

如何在其他圖像中制作圖像滾動效果?

榮姿康1年前9瀏覽0評論

我想做類似這樣的東西,以促進我的網站在滾動效果就像在這個頁面

我發現來自電腦的圖像只是一個圖像:

enter image description here

網站里面滾動的也是圖片:

enter image description here

所以我的問題是,如何使其他圖像在電腦中滾動,就像我提供的原始網站一樣,也許是一些JS?

這是我發現的類似解決方案:

HTML:

<ul id="scroller">
<li><img src="https://i.stack.imgur.com/lPcRz.jpg" width="400" 
height="1000"></li>
</ul>

JS:

(function($) {
        $(function() { //on DOM ready
            $("#scroller").simplyScroll({
                customClass: 'vert',
                orientation: 'vertical',
                auto: true,
                manualMode: 'end',
                frameRate: 8,
                speed: 3
            });
        });
    })(jQuery);

和CSS:

/* Container DIV */
    .simply-scroll {
        width: 400px;
        height: 1000px;
        margin-bottom: 1em;
    }

但是如何在PC圖像中制作這個圖像,并上下移動呢?

這是你所需要的。

.computer-empty {
    overflow: hidden;
    position: relative;
    width: 540px;
}
.computer-screen {
    overflow: hidden;
    position: absolute;
    height: 247px;
    width: 445px;
    left: 50px;
    top: 20px;
}
.screen-landing {
    left: 0;
    line-height: 0;
    position: absolute;
    width: 100%;
    transition: all 6s;
    -o-transition: all 6s;
    -ms-transition: all 6s;
    -moz-transition: all 6s;
    -webkit-transition: all 6s;
}
.screen-landing:hover {
    cursor: pointer;
    margin-top: -1036px;
}
img {
    max-width: 100%;
    width: auto\9;
    height: auto;
    vertical-align: middle;
    border: 0;
    -ms-interpolation-mode: bicubic;
}
.computer-empty img.computer {
    width: 100%;
}

<div class="text-align-center computer-empty">
                
                <a target="_blank"  class="">
                <div class="computer-screen">
                    <div class="screen-landing">
                        <img src="http://fwrd.irontemplates.com/home/img/the_rise.jpg" alt="demo - the rise">
                    </div>
                </div>
                <img class="computer" src="http://fwrd.irontemplates.com/home/img/computer.jpg" alt="computer">
                </a>
                <h1>The Rise</h1>
            </div>

這可能不是最好的解決方案,但卻是我目前能想到的唯一解決方案:

你可以編輯電腦的圖片,把屏幕切掉,讓它變得透明。

做兩個切口,一個在另一個里面。

首先,較大的一個將包含計算機的圖片。

第二個將完全填充計算機畫面中的空白區域,也就是屏幕所在的位置。

確保添加溢出:滾動;在內部div的樣式表中。

它看起來會像這樣:

HTMl:

<div>
    <img src="path to your picture of computer">
    <div class="img-box">
        <img src="path to your picture of inside screen">
    </div>
</div>

CSS:

.img-box{
        width: ???;
        height: ???;
        overflow: scroll;
    }

現在我意識到這個解決方案很難做出響應,但這是我現在唯一能想到的。