Divi建设者背景视频将被静音

问题描述 投票:3回答:1

嗨,我实际上有一个使用divi builder构建的网站,我已经集成了背景视频,任何人都可以帮助在divi builder中找到文件的位置并静音视频,截至目前它正在播放声音。

php wordpress
1个回答
8
投票

您可以尝试使用此jQuery解决方案来静音背景视频。将此下面的代码添加到主题选项>集成>代码集成>将代码添加到博客的<head>

<script type="text/javascript">
 jQuery(document).ready(function(){
   jQuery(".et_pb_section_video_bg video").prop('muted', true); 
});
</script>

然后让我知道结果。

© www.soinside.com 2019 - 2024. All rights reserved.