import React from 'react';
import './index.scss';
import noData from './H5.svg';
export const H5Frame = (props: H5FrameProps) => {
const { options, isPreviewShow = false } = props;
const {
iframeUrl,
scrollStatus,
iframeOpacity,
} = options;
// 查看是否同域,不同域需要在路径前添加 "http://" 或者 "https://" 前缀
let url =
iframeUrl.indexOf('http://') > -1 || iframeUrl.indexOf('https://') > -1 ? iframeUrl : `http://${iframeUrl}`;
let scrollingAttr = scrollStatus ? 'yes' : 'no';
return !iframeUrl ? (
) : (