internet-explorer-11

Background size animation not working in IE11 or Ipad

那年仲夏 提交于 2021-02-19 07:29:21
问题 I am trying to create a simple img zoom with CSS3 animation by setting a background image to a div and then resizing that div with the animation. It works fine in FF and Chrome yet in Safari the effect is not smooth. I've read that adding -webkit-transform: translateZ(0) can help with smoother animations in Safari yet this has no effect. Can anyone help. Site here http://form-flourish.businesscatalyst.com/form-pilates.htm Here is my code. HTML: <div id="home"> </div> CSS: div#home {

Internet Explorer says 'Invalid character in vendor.js' ( ` )

杀马特。学长 韩版系。学妹 提交于 2021-02-11 14:39:40
问题 Angular 7 application not working on internet explorer. It says invalid character in vendor.js I have already apply polyfills.ts changes but it still not working. my tsconfig.json => { "compileOnSave": false, "compilerOptions": { "baseUrl": "./", "outDir": "./dist/out-tsc", "sourceMap": true, "declaration": false, "module": "es2015", "moduleResolution": "node", "emitDecoratorMetadata": true, "experimentalDecorators": true, "importHelpers": true, "target": "es5", "typeRoots": [ "node_modules/

Failed to navigate to https://www.google.ca. This usually means that a call to the COM method IWebBrowser2::Navigate2() with Python Unittest Selenium

一曲冷凌霜 提交于 2021-02-11 12:44:50
问题 from selenium import webdriver import unittest from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC from selenium.webdriver.common.by import By from time import sleep class MyTestCase(unittest.TestCase): def setUp(self) -> None: self.driver = webdriver.Ie(executable_path="C:\\webdriver\\IEDriverServer.exe") self.driver.maximize_window() self.driver.get("https://www.google.ca") def test_googletest(self): element =

React app not rendering in IE 11 even with polyfills

无人久伴 提交于 2021-02-11 06:13:34
问题 I have a fully built React application that I would like to deploy on IE 11, but been having no success but a white page. For the sake of testing, I created a dummy app using npx create-react-app and attempted to launch on IE 11/Edge. Installing 'react-app-polyfill' and importing on 'react-app-polyfill/ie11' and 'react-app-polyfill/stable' on line 1 & 2 of index.js, I also included "last 1 ie version" in the browserlist.development inside the package.json file. Every resource online points to

Object doesn't support property or method 'replace' on Internet Explorer 11

折月煮酒 提交于 2021-02-10 16:41:28
问题 I am trying to make my Vuejs application work on IE11. However, one node module ( vue-directive-tooltip ) throw an error on IE11: Object doesn't support property or methode "replace" The module is supposed to be IE11 compatible. I have tried to require the polyfill I need at the top of the entry point to my application. I have also tried to add the node module to the transpile dependencies. vue.config.js: require("@babel/polyfill"); configureWebpack: { entry: ["@babel/polyfill", path.resolve(

function animate({ draw1, duration1 }) {… causes expected identifier (script1010) error in IE11 - Object Destructuring support in IE [duplicate]

柔情痞子 提交于 2021-02-09 11:54:48
问题 This question already has answers here : Support for ES6 in Internet Explorer 11 (1 answer) IE11 gives SCRIPT1002 error when defining class in javascript (3 answers) Closed 2 years ago . I am having issues with a site build where the page is not displaying properly in IE11. The site displays correctly in chrome, firefox, and edge. The error seems to break all the javascript from the file of the error. The file is responsible for handling parts of the layout, so when it fails it causes various

Django, Django REST Framework, Internet Explorer and CSRF token missing or incorrect

三世轮回 提交于 2021-02-08 11:24:21
问题 We have a Django App using REST Framework. It is a nginx, redis, celery, gunicorn and PostgreSQL setup. There is only one App server. Our ajax calls use this function : $.ajaxSetup({ beforeSend: function (jqXHR, settings) { ... jqXHR.setRequestHeader("X-CSRFToken", secureCheck.reqCSRFToken()); }) if ($currentForm.attr('method') != 'POST') { if ($currentForm.attr('method') != '') { var typeRequest = $currentForm.attr('method'); headersRequest= {'X-HTTP-Method-Override': typeRequest}; } } var

Function.prototype.toString issues in IE11 Svelte/Babel/Rollup

回眸只為那壹抹淺笑 提交于 2021-02-08 07:22:00
问题 My current rollup.config.js is commonjs(), babel({ extensions: ['.js', '.mjs', '.html', '.svelte'], runtimeHelpers: true, exclude: ['node_modules/@babel/**', 'node_modules/core-js/**' ], // <= /!\ NOT 'node_mobules/**' presets: [ ['@babel/preset-env', { // adapter to ensure IE 11 support targets: '> 0.25%, not dead, IE 11', "modules": false, "spec": true, "forceAllTransforms": true, useBuiltIns: 'usage', corejs: 3 }] ], plugins: [ '@babel/plugin-syntax-dynamic-import', [ '@babel/plugin

Function.prototype.toString issues in IE11 Svelte/Babel/Rollup

你离开我真会死。 提交于 2021-02-08 07:19:37
问题 My current rollup.config.js is commonjs(), babel({ extensions: ['.js', '.mjs', '.html', '.svelte'], runtimeHelpers: true, exclude: ['node_modules/@babel/**', 'node_modules/core-js/**' ], // <= /!\ NOT 'node_mobules/**' presets: [ ['@babel/preset-env', { // adapter to ensure IE 11 support targets: '> 0.25%, not dead, IE 11', "modules": false, "spec": true, "forceAllTransforms": true, useBuiltIns: 'usage', corejs: 3 }] ], plugins: [ '@babel/plugin-syntax-dynamic-import', [ '@babel/plugin

Gradient background with text clip for IE11 and safari

断了今生、忘了曾经 提交于 2021-02-07 20:02:17
问题 The example below: h1 { background-image: linear-gradient(to right, #00b140, #bcda00 17%, #bcda00 60%, #00b140); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; } <h1>Text11111</h1> Lacks full cross-browser support. Any suggestions? 回答1: Here is clip for background with gradient /** -webkit-background-clip: text Polyfill # What? # A polyfill which replaces the specified element with a SVG in browser where "-webkit-background-clip: text" is not