轮播在 Joomla 上使用自定义 HTML 消失

Posted

技术标签:

【中文标题】轮播在 Joomla 上使用自定义 HTML 消失【英文标题】:Carousel disappears using custom HTML on Joomla 【发布时间】:2018-09-27 06:32:53 【问题描述】:

我的轮播图像在 Joomla 上消失了。我正在尝试使用 W3 Schools 的以下代码为网页创建一个自动横幅,我已将代码输入到 Joomla 的自定义模块中。我也尝试过将它与 Notepad++ 一起使用并在浏览器中打开它,它工作得很好。但是,在 Joomla 页面上,图像变成白色并且不显示。我可以在它们之间切换,滑块和箭头的 CSS 似乎可以工作。请找到我的代码:

<html>
<head>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <style>
        * box-sizing: border-box;
        body font-family: Verdana, sans-serif;
        .mySlides display: none;
        img vertical-align: middle;
        /* Slideshow container */
        .slideshow-container 
        max-width: 1000px;
        position: relative;
        margin: auto;
        
        /* Caption text */
        .text 
        color: #f2f2f2;
        font-size: 15px;
        padding: 8px 12px;
        position: absolute;
        bottom: 8px;
        width: 100%;
        text-align: center;
        
        /* Number text (1/3 etc) */
        .numbertext 
        color: #f2f2f2;
        font-size: 12px;
        padding: 8px 12px;
        position: absolute;
        top: 0;
        
        /* The dots/bullets/indicators */
        .dot 
        height: 15px;
        width: 15px;
        margin: 0 2px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
        
        .active 
        background-color: #717171;
        
        /* Fading animation */
        .fade 
        -webkit-animation-name: fade;
        -webkit-animation-duration: 1.5s;
        animation-name: fade;
        animation-duration: 1.5s;
        
        @-webkit-keyframes fade 
        from opacity: .4 
        to opacity: 1
        
        @keyframes fade 
        from opacity: .4 
        to opacity: 1
        
        /* On smaller screens, decrease text size */
        @media only screen and (max-width: 300px) 
        .text font-size: 11px
        
    </style>
    </head>
<body>
    <h2>Automatic Slideshow</h2>
    <p>Change image every 2 seconds:</p>
    <div class="slideshow-container">
        <div class="mySlides fade">
            <div class="numbertext">1 / 3</div>
            <img src="https://www.w3schools.com/howto/img_nature_wide.jpg" 
style="width:100%">
            <div class="text">Caption Text</div>
        </div>
        <div class="mySlides fade">
            <div class="numbertext">2 / 3</div>
            <img src="https://www.w3schools.com/howto/img_fjords_wide.jpg" 
style="width:100%">
            <div class="text">Caption Two</div>
        </div>
        <div class="mySlides fade">
            <div class="numbertext">3 / 3</div>
            <img 
src="https://www.w3schools.com/howto/img_mountains_wide.jpg" 
style="width:100%">
            <div class="text">Caption Three</div>
        </div>
    </div>
    <br>
    <div style="text-align:center">
        <span class="dot"></span> 
        <span class="dot"></span> 
        <span class="dot"></span> 
    </div>
    <script>
        var slideIndex = 0;
        showSlides();

        function showSlides() 
            var i;
            var slides = document.getElementsByClassName("mySlides");
            var dots = document.getElementsByClassName("dot");
            for (i = 0; i < slides.length; i++) 
               slides[i].style.display = "none";  
            
            slideIndex++;
            if (slideIndex > slides.length) slideIndex = 1    
            for (i = 0; i < dots.length; i++) 
                dots[i].className = dots[i].className.replace(" active", 
 "");
            
            slides[slideIndex-1].style.display = "block";  
            dots[slideIndex-1].className += " active";
            setTimeout(showSlides, 6000); // Change image every 6 seconds
        
      </script>
    </body>
</html>

【问题讨论】:

【参考方案1】:

如果您使用的是自定义 HTML 模块 - 它会禁用您的所有脚本 我建议你在模块中使用其他东西来使用 JS - 例如 - Flexi Custom Code

【讨论】:

我已经在使用 Flexi Custom 代码,但它仍然会产生同样的问题。 你能告诉我 - 你在模块中插入什么吗?而且 - 也许使用一些幻灯片模块而不是纯代码更容易?【参考方案2】:

您显示的代码是针对整个 html 文档的,您不能简单地将整个代码转储到另一个完整的 html 文档中。 Joomla 是一个 CMS,你不应该只是将 html 放入其中。要添加图像轮播,最好创建自己的模块来执行此操作。

【讨论】:

以上是关于轮播在 Joomla 上使用自定义 HTML 消失的主要内容,如果未能解决你的问题,请参考以下文章

猫头鹰轮播在 WordPress 主题中不起作用。帮我解决这个问题

轮播在图像更改时不断锚定到页面顶部

Wordpress 轮播在 Chrome 中不起作用

仅 CSS3 的轮播在 Firefox 中不起作用

使用流畅的轮播在选项卡之间移动

ui滑块和bootstrap 3轮播在一起