swiper插件在ie瀏覽器無反應,解決辦法

来源:https://www.cnblogs.com/cyhsmile/archive/2019/09/16/11527260.html
-Advertisement-
Play Games

在寫pc端頁面時,用swiper插件發現在ie中用不了,百度下說是swiper從3以後向手機端發展,所以在pc端無響應。後來瞭解到,swiper3是專門針對移動端寫的。如果想相容IE8的話,應該引入swiper2. 也就是:idangerous.swiper.js 官網演示地址:http://2.s ...


               在寫pc端頁面時,用swiper插件發現在ie中用不了,百度下說是swiper從3以後向手機端發展,所以在pc端無響應。後來瞭解到,swiper3是專門針對移動端寫的。如果想相容IE8的話,應該引入swiper2. 
也就是:idangerous.swiper.js

官網演示地址:http://2.swiper.com.cn/demo/

swiper2下載地址

鏈接:https://pan.baidu.com/s/1rWhJ1sCbcJVf4wfBRq_MYg 密碼:qcuw
參考源碼:

css:

<link rel="stylesheet" type="text/css" href="../css/idangerous.swiper.css" />

js

<script src="../js/idangerous.swiper.js" type="text/javascript" charset="utf-8"></script>

html

  <div class="container-middle-solution">

<div class="swiper-container"> <div class="swiper-wrapper"> <div class="swiper-slide"> <div class="container-middle-solution-pc"> <div> <a class="title">網路解決方案</a> </div> <div>我們做響應網站,網頁開發,區塊鏈開發,UI/UX設計,CRM解決方案,托管伺服器解決方案。</div> <div> <img src="../img/index-pc.png"> </div> </div> </div> <div class="swiper-slide"> <div class="container-middle-solution-pc"> <div>移動解決方案</div> <div>我們做iOS應用開發,Android應用開發,混合APP開發以及移動應用市場咨詢。</div> <div> <img src="../img/index-pc.png"> </div> </div> </div> <div class="swiper-slide"> <div class="container-middle-solution-pc"> <div>網路解決方案</div> <div>我們做響應網站,網頁開發,區塊鏈開發,UI/UX設計,CRM解決方案,托管伺服器解決方案。</div> <div> <img src="../img/index-pc.png"> </div> </div> </div> <div class="swiper-slide"> <div class="container-middle-solution-pc"> <div>網路解決方案</div> <div>我們做響應網站,網頁開發,區塊鏈開發,UI/UX設計,CRM解決方案,托管伺服器解決方案。</div> <div> <img src="../img/index-pc.png"> </div> </div> </div> <div class="swiper-slide"> <div class="container-middle-solution-pc"> <div>網路解決方案</div> <div>我們做響應網站,網頁開發,區塊鏈開發,UI/UX設計,CRM解決方案,托管伺服器解決方案。</div> <div> <img src="../img/index-pc.png"> </div> </div> </div> <div class="swiper-slide"> <div class="container-middle-solution-pc"> <div>網路解決方案</div> <div>我們做響應網站,網頁開發,區塊鏈開發,UI/UX設計,CRM解決方案,托管伺服器解決方案。</div> <div> <img src="../img/index-pc.png"> </div> </div> </div> <div class="swiper-slide"> <div class="container-middle-solution-pc"> <div>網路解決方案</div> <div>我們做響應網站,網頁開發,區塊鏈開發,UI/UX設計,CRM解決方案,托管伺服器解決方案。</div> <div> <img src="../img/index-pc.png"> </div> </div> </div> </div> <!-- Add Arrows --> <!--<div class="icon-left">--> <!--<div class="swiper-button-next"></div> <div class="swiper-button-prev"></div>--> <a class="arrow-left" href="#"></a> <a class="arrow-right" href="#"></a> </div> </div>

<script type="text/javascript">
var swiper = new Swiper('.swiper-container', {
// slidesPerView: "auto",
slidesPerView: 2,
spaceBetween: 0,
// mode: 'vertical', //2版本垂直滑動
// direction: 'vertical', //3版本垂直滑動
// pagination: {
// el: '.swiper-pagination',
// clickable: true,
// },
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev',
},
});
$('.arrow-left').on('click', function(e) {
e.preventDefault();
swiper.swipePrev();
})
$('.arrow-right').on('click', function(e) {
e.preventDefault();
swiper.swipeNext();
})
</script>

 

css樣式問題

.swiper-container {
                width: 100%;
                padding-bottom: 100px;
            }
            
            /*.swiper-slide {
                background-position: center;
                background-size: cover;
                display: -webkit-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                justify-content: center;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                align-items: center;
            }*/
            
            .swiper-button-prev,
            .swiper-container-rtl .swiper-button-next {
                background: url(../img/index-left.png) center center no-repeat;
                background-size: 100%;
                100%;
                left: 52px;
                right: auto;
                top: 220px;
                width: 54px;
                height: 54px;
            }
            /*.arrow-left {
                background: url(../img/index-left.png) center center no-repeat;
                background-size: 100%;
                100%;
                left: 52px;
                right: auto;
                top: 220px;
                width: 54px;
                height: 54px;
            }*/
            
            .arrow-left {
                background: url(../img/index-left.png) no-repeat left top;
                position: absolute;
                left: 36px;
                top: 180px;
                margin-top: -15px;
                width: 54px;
                height: 54px;
                background-size: 100% 100%;
            }
            
            .arrow-right {
                background: url(../img/index-right.png) no-repeat left bottom;
                position: absolute;
                /* right: 10px; */
                left: 110px;
                top: 180px;
                margin-top: -15px;
                width: 54px;
                height: 54px;
                background-size: 100% 100%;
            }

效果

 

註意:在引用css2.0是有些樣式之前寫的4.0的,所以樣式要改,要不然起衝突

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 利用快速原型獲取軟體需求 在客戶 開發商 用戶 之間 旨在啟發客戶 引導客戶真正知道和瞭解自己的可行需求 快速搭建原型 高效準確地確定用戶需求 我們可能要用到一個軟體需求方面的知識-快速原型 例子 以CSS語言為例從一個最最最的教務系統入手 代碼如下: <html><center><h2>歡迎返校! ...
  • 以下通過一段示例代碼,說明原型模型中的基本概念以及知識點。 部分摘自《JavaScript高級程式設計(第3版)》 ...
  • 前言 最近在看 React 的新語法—— ,只能一句話概括:React 語法真的是越來越強大,越寫代碼越少。 強烈推薦還沒看 React Hooks 的同學去學習下,這會讓你寫react 項目變得非常爽! 以前 React 組件可以看成是: 無狀態組件(function定義)和有狀態組件(class ...
  • [TOC] 1. 繼承性 繼承性:在css有某些屬性是可以繼承下來,如 color,text xxx,line height,font xxx,letter spacing,word spacing是可以繼承下來,但有些屬性是不可以繼承下來的,如 border:1px solid green; 2. ...
  • [TOC] css: 層疊樣式表 1. css引入方式 行內樣式 內嵌式 在head標簽內部書寫style 外接式 三種引入方式的優先順序: 1.行內樣式 內嵌式和外接式, 2.內嵌和外接要看誰在後面,在後面的優先順序高 2. css選擇器 2.1 基礎選擇器 1.id選擇器 特定屬性的元素(標簽)、唯 ...
  • HTML HTML 超文本標記語言 HTML特征: 對換行和空格不敏感 空白摺疊 1.1 HTML標簽 標簽也稱為標記。 標簽的種類: 1.雙閉合標簽 2.單閉合標簽 1.1.1 head標簽 meta 提供基本網站元信息的標簽 title 顯示網站的標題 link 鏈接css資源文件、網站圖標 s ...
  • 什麼是 JavaScript? JavaScript 是一種直譯式腳本語言,一種輕量級的腳本語言 它可以在網頁上實現複雜的功能,網頁展現給你的不再是簡單的靜態信息,而是實時的內容更新,互動式的地圖,2D/3D 動畫,滾動播放的視頻等等。JavaScript 怎能缺席。它是標準 Web 技術蛋糕的第三 ...
  • 1、JS的核心標準ECMAScript 組成 ECMAScript >核心語法標準 DOM >對文檔節點的操作 BOM >對瀏覽器的操作 2、JS的註釋: 單行註釋 //註釋內容 多行註釋 /* 註釋內容 */ 3、JS的保留字和關鍵字 關鍵字:有特殊功能的單詞如: break do try typ ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...