加载后图像在Safari中消失

时间:2019-07-15 20:35:57

标签: css webkit scale transition

我有一个简单的按比例缩放图像设置,该设置在Safari之外的所有浏览器中均可正常运行。 Safari中的图像会加载一会儿,然后消失。更奇怪的是,如果我更改为其他浏览器选项卡,然后返回图像并正确显示。

---
- name: Install and configure mysql
  hosts: dbservers
  remote_user: yabx
  become: true

  vars:
    my_proxy_env:
      http_proxy: http://***:***@192.168.1.45:8080
      https_proxy: https://***:***@192.168.1.45:8080
      no_proxy: .my-company.com, .my-other-internal-site.com

  tasks: 
    - name: Install MySQL 5.7 repo
      yum:
        name: http://dev.mysql.com/get/mysql57-community-release-el7-8.noarch.rpm
        state: present
      environment: "{{ my_proxy_env }}"

    - name: Install MySQL 5.7
      yum:
        name:
          - mysql-community-server
          - mysql-community-client
          - MySQL-python
      environment: "{{ my_proxy_env }}"

   # ... other tasks without proxy ...

0 个答案:

没有答案