<!DOCTYPE html>
<html>
<body>
@@include('./view.html')
@@include('./var.html', {
"name": "haoxin",
"age": 12345,
"socials": {
"fb": "facebook.com/include",
"tw": "twitter.com/include"
}
})
</body>
</html>
<label>@@name</label>
<label>@@age</label>
<strong>@@socials.fb</strong>
<strong>@@socials.tw</strong>
@media screen and (max-width: 779px){
.live__mail{
font-size:16px
}
}
$(document).ready(function(){
$("#video-active").on(
"timeupdate",
function(event){
console.log(this.currentTime);
console.log(this.duration);
if(this.currentTime=='10'){
//alert('start sound');
}
});
});