File size: 871 Bytes
ed71376 d087aff 6638435 54d9b1d ed71376 54d9b1d ed71376 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>My static Space</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="iframe-container">
<iframe
src="https://codellama-codellama-13b-chat.hf.space"
frameborder="0"
scrolling="no"
></iframe>
</div>
<button class="click"><span>🤖</span></button>
</body>
<script>
const click = document.querySelector('.click')
const frame = document.querySelector('.iframe-container')
let i = 1;
click.addEventListener('click', ()=>{
if(i == 0) {
frame.style.display = 'none'
i = 1
}else if(i == 1){
frame.style.display = 'block'
i = 0
}
})
</script>
</html>
|