mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-16 01:41:02 +08:00
64 lines
1.3 KiB
Plaintext
64 lines
1.3 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`renders ./components/image/demo/basic.md correctly 1`] = `
|
|
<div
|
|
class="ant-image"
|
|
style="width:200px"
|
|
>
|
|
<img
|
|
class="ant-image-img"
|
|
src="https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png"
|
|
/>
|
|
</div>
|
|
`;
|
|
|
|
exports[`renders ./components/image/demo/fallback.md correctly 1`] = `
|
|
<div
|
|
class="ant-image"
|
|
style="width:200px;height:200px"
|
|
>
|
|
<img
|
|
class="ant-image-img"
|
|
src="error"
|
|
style="height:200px"
|
|
/>
|
|
</div>
|
|
`;
|
|
|
|
exports[`renders ./components/image/demo/placeholder.md correctly 1`] = `
|
|
Array [
|
|
<div
|
|
class="ant-image"
|
|
style="width:200px"
|
|
>
|
|
<img
|
|
class="ant-image-img"
|
|
src="https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png?undefined"
|
|
/>
|
|
<div
|
|
aria-hidden="true"
|
|
class="ant-image-placeholder"
|
|
>
|
|
<div
|
|
class="ant-image"
|
|
style="width:200px"
|
|
>
|
|
<img
|
|
class="ant-image-img"
|
|
src="https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png?x-oss-process=image/blur,r_50,s_50/quality,q_1/resize,m_mfit,h_200,w_200"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>,
|
|
<button
|
|
class="ant-btn ant-btn-primary"
|
|
style="margin-left:10px"
|
|
type="button"
|
|
>
|
|
<span>
|
|
Reload
|
|
</span>
|
|
</button>,
|
|
]
|
|
`;
|