Commit 811ba842 by doszhang

dos

parent 8db579b1
...@@ -83,6 +83,29 @@ video { ...@@ -83,6 +83,29 @@ video {
-webkit-animation: scfalse 1000s linear infinite; -webkit-animation: scfalse 1000s linear infinite;
} }
.gift {
animation: scale 1s ease-in-out infinite;
-webkit-animation: scale 1s ease-in-out infinite;
}
@keyframes scale {
0%, 100% {
transform: scale(0.9);
}
50% {
transform: scale(1.1);
}
}
@-webkit-keyframes scale {
0%, 100% {
-webkit-transform: scale(0.9);
}
50% {
-webkit-transform: scale(1.1);
}
}
@keyframes scfalse { @keyframes scfalse {
0%,100% { 0%,100% {
transform: scale(1); transform: scale(1);
......
...@@ -54,7 +54,7 @@ $('input[name=tel]').attr('type','tel'); ...@@ -54,7 +54,7 @@ $('input[name=tel]').attr('type','tel');
$('input[name=tel]').attr('maxlength',11); $('input[name=tel]').attr('maxlength',11);
$('.video-block').append('<video class="video" src="" x5-playsinline="" playsinline="" webkit-playsinline="" x-webkit-airplay="allow" x-webkit-airplay="true" ><video>'); $('.video-block').append('<video class="video" src="" x5-playsinline="" playsinline="" webkit-playsinline="" x-webkit-airplay="allow" x-webkit-airplay="true" ><video>');
$('.leafContainer').attr('id','leafContainer'); $('.leafContainer').attr('id','leafContainer');
$('.gif-block').html('<img src="'+ window.base_resource_url +'/image2/light.gif" class="gif" />') // $('.gif-block').html('<img src="'+ window.base_resource_url +'/image2/light.gif" class="gif" />')
if(window.type != 0 && window.tel == '') if(window.type != 0 && window.tel == '')
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment