codecamp

mip-anim 动图

mip-anim 用来支持在 mip中gif图的使用

标题内容
类型通用
支持布局responsive, fixed-height, fixed, container
所需脚本https://mipcache.bdstatic.com/static/v1.2/mip-anim.js

示例

带placeholder的加载方式

<mip-anim layout="fixed" width=210 height=210 src="xxx" alt="an animation">
   <mip-img layout="fixed-height" width=210 height=210 src="xxxx"></mip-img>
</mip-anim>

只有gif图

<mip-anim layout="fixed" width=210 height=210 src="xxx" alt="an animation"></mip-anim>

属性

src

说明:图片路径
必选项:是
类型:字符串
取值范围:URL

mip-accordion 折叠节点
mip-appdl 下载
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

MIP 帮助

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }