gpt4 book ai didi

javascript - 猫头鹰轮播视频没有响应地调整大小

转载 作者:技术小花猫 更新时间:2023-10-29 12:52:45 25 4
gpt4 key购买 nike

我调整了静态图像的大小,但在调整浏览器大小时视频却没有。这可能是因为我在脚本中添加了宽度。但是,如果我只保留 videoWidth: true, 则视频会变小。

在网站上 ( http://imdarrien.com/work/Kami/kami.html )

https://jsfiddle.net/9NJ2k/6/

这是来自网站 ( http://www.owlcarousel.owlgraphic.com/demos/video.html ) 的官方演示

video:true,
videoHeight: 500,
videoWidth: 856,


.owl-carousel .owl-video-wrapper {
position: relative;
height: 100%;
background: #000;
}

.owl-carousel .owl-video-play-icon {
position: absolute;
height: 80px;
width: 80px;
left: 50%;
top: 50%;
margin-left: -40px;
margin-top: -40px;
background: url(play_button.png) no-repeat;
cursor: pointer;
z-index: 1;
-webkit-backface-visibility: hidden;
opacity:1;
transition: all 1s;
}

videoWidth: false When <code>videoWidth: false</code>

最佳答案

通过添加“responsive:true”选项并更改视频标签宽度 100%;height:auto,您可以获得响应式视频。

演示:http://jsfiddle.net/nLz17fcv/5/

脚本:

 $(document).ready(function() {
$("#carousel").owlCarousel({
items:1,
autoPlay : 5500,
stopOnHover : true,
center:true,
navigation:false,
pagination:false,
goToFirstSpeed : 1300,
singleItem : true,
autoHeight : true,
responsive: true,
responsiveRefreshRate : 200,
responsiveBaseWidth: window,
video:true,
transitionStyle:"fade",
onTranslate: function() {
$('.owl-item').find('video').each(function() {
this.pause();
});
}
});
})

CSS

    .owl-carousel  {width:90%; margin: 0 auto;}
.owl-carousel img{width:100%;height:auto;}

关于javascript - 猫头鹰轮播视频没有响应地调整大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33382418/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com