33 lines
702 B
HTML
33 lines
702 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>KeVisual Base Example</title>
|
|
<script type="module" src="./demo/lit/render.ts"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<ev-html>
|
|
<style >
|
|
p {
|
|
color: red;
|
|
/* 添加一个id */
|
|
span {
|
|
color: blue;
|
|
}
|
|
}
|
|
</style>
|
|
<script type="text/envision">
|
|
console.log('Script executed within ev');
|
|
console.log(document.body, window.shadowRoot);
|
|
</script>
|
|
<p>This paragraph should be red.
|
|
<span>This span.</span>
|
|
</p>
|
|
</ev-html>
|
|
<p>This paragraph should be blue.</p>
|
|
</body>
|
|
|
|
</html> |