@shijiu/jsview-vue-samples 1.9.887 → 1.9.915
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AnimPicture/App.vue +10 -10
- package/Basic/App.vue +1 -1
- package/Basic/components/FontStyle.css +4 -4
- package/Basic/components/anim/AnimKeyframeBasic.vue +1 -1
- package/Basic/components/anim/AnimKeyframeComposite.vue +2 -2
- package/Basic/components/anim/AnimTransition.vue +4 -4
- package/Basic/components/div/DivClip.vue +0 -39
- package/Basic/components/div/DivCssScoped.vue +1 -1
- package/Basic/components/div/DivLayout.vue +1 -1
- package/Basic/components/div/DivRadius.vue +4 -4
- package/Basic/components/img/ImageGroup.vue +2 -2
- package/Basic/components/img/ImgLayout.vue +78 -14
- package/Basic/components/text/TextDirection.vue +9 -9
- package/Basic/components/text/TextEmoji.vue +7 -2
- package/Basic/components/text/TextFontStyle.vue +4 -4
- package/Basic/components/text/TextGroup1.vue +1 -1
- package/Basic/components/text/TextGroup2.vue +2 -2
- package/BasicFocusControl/App.vue +2 -2
- package/BasicFocusControl/components/BaseBlock.vue +2 -2
- package/BasicFocusControl/components/MainArea.vue +2 -2
- package/BasicFocusControl/components/SideBar.vue +2 -2
- package/Collision/App.vue +16 -16
- package/ColorSpace/App.vue +11 -11
- package/CssPreprocessor/App.vue +70 -0
- package/CssPreprocessor/Less/App.vue +32 -0
- package/CssPreprocessor/Less/PanelData.js +51 -0
- package/CssPreprocessor/Less/components/less-group1/LessComments.vue +34 -0
- package/CssPreprocessor/Less/components/less-group1/LessConditionals.vue +32 -0
- package/CssPreprocessor/Less/components/less-group1/LessOperations.vue +24 -0
- package/CssPreprocessor/Less/components/less-group1/LessVariables.vue +48 -0
- package/CssPreprocessor/Less/components/less-group2/LessIteration.vue +32 -0
- package/CssPreprocessor/Less/components/less-group2/LessMethods.vue +27 -0
- package/CssPreprocessor/Less/components/less-group3/LessExtends.vue +32 -0
- package/CssPreprocessor/Less/components/less-group3/LessNesting.vue +63 -0
- package/CssPreprocessor/Less/components/less-group4/LessKeyframes.vue +40 -0
- package/CssPreprocessor/Less/components/less-group4/LessMaps.vue +33 -0
- package/CssPreprocessor/Less/components/less-group4/LessMixins.vue +33 -0
- package/CssPreprocessor/Less/components/less-group5/LessImporting.vue +34 -0
- package/CssPreprocessor/Less/components/less-group5/TextSettings.less +4 -0
- package/CssPreprocessor/Scss/App.vue +32 -0
- package/CssPreprocessor/Scss/PanelData.js +51 -0
- package/CssPreprocessor/Scss/components/scss-group1/ScssComments.vue +34 -0
- package/CssPreprocessor/Scss/components/scss-group1/ScssConditionals.vue +36 -0
- package/CssPreprocessor/Scss/components/scss-group1/ScssOperations.vue +30 -0
- package/CssPreprocessor/Scss/components/scss-group1/ScssVariables.vue +48 -0
- package/CssPreprocessor/Scss/components/scss-group2/ScssIteration.vue +36 -0
- package/CssPreprocessor/Scss/components/scss-group2/ScssMethods.vue +84 -0
- package/CssPreprocessor/Scss/components/scss-group3/ScssExtends.vue +34 -0
- package/CssPreprocessor/Scss/components/scss-group3/ScssNesting.vue +75 -0
- package/CssPreprocessor/Scss/components/scss-group4/ScssKeyframes.vue +40 -0
- package/CssPreprocessor/Scss/components/scss-group4/ScssMaps.vue +35 -0
- package/CssPreprocessor/Scss/components/scss-group4/ScssMixins.vue +33 -0
- package/CssPreprocessor/Scss/components/scss-group5/ScssImporting.vue +34 -0
- package/CssPreprocessor/Scss/components/scss-group5/TextSettings.scss +4 -0
- package/CssPreprocessor/Stylus/App.vue +32 -0
- package/CssPreprocessor/Stylus/PanelData.js +51 -0
- package/CssPreprocessor/Stylus/components/stylus-group1/StylusComments.vue +34 -0
- package/CssPreprocessor/Stylus/components/stylus-group1/StylusConditionals.vue +36 -0
- package/CssPreprocessor/Stylus/components/stylus-group1/StylusOperations.vue +30 -0
- package/CssPreprocessor/Stylus/components/stylus-group1/StylusVariables.vue +47 -0
- package/CssPreprocessor/Stylus/components/stylus-group2/StylusIteration.vue +34 -0
- package/CssPreprocessor/Stylus/components/stylus-group2/StylusMethods.vue +78 -0
- package/CssPreprocessor/Stylus/components/stylus-group3/StylusExtends.vue +34 -0
- package/CssPreprocessor/Stylus/components/stylus-group3/StylusNesting.vue +63 -0
- package/CssPreprocessor/Stylus/components/stylus-group4/StylusKeyframes.vue +40 -0
- package/CssPreprocessor/Stylus/components/stylus-group4/StylusMaps.vue +33 -0
- package/CssPreprocessor/Stylus/components/stylus-group4/StylusMixins.vue +33 -0
- package/CssPreprocessor/Stylus/components/stylus-group5/StylusImporting.vue +34 -0
- package/CssPreprocessor/Stylus/components/stylus-group5/TextSettings.styl +4 -0
- package/CssPreprocessor/utils/ContentBlock.vue +43 -0
- package/CssPreprocessor/utils/ContentList.vue +34 -0
- package/CssPreprocessor/utils/FontStyle.css +19 -0
- package/CssPreprocessor/utils/Panel.vue +49 -0
- package/CssPreprocessor/utils/TitleBar.vue +29 -0
- package/DemoHomepage/App.vue +46 -11
- package/DemoHomepage/components/Dialog.vue +15 -15
- package/DemoHomepage/router.js +20 -12
- package/DemoHomepage/views/Homepage.vue +90 -102
- package/DivMetroPerformance/App.vue +150 -0
- package/DivMetroPerformance/Item.vue +58 -0
- package/DivMetroPerformance/assets/bg.jpg +0 -0
- package/DivMetroPerformance/assets/coupon_content.png +0 -0
- package/DivMetroPerformance/assets/coupon_left.png +0 -0
- package/DivMetroPerformance/assets/coupon_mid.png +0 -0
- package/DivMetroPerformance/assets/coupon_right.png +0 -0
- package/DivMetroPerformance/assets/focus_border.png +0 -0
- package/DivMetroPerformance/assets/holder_logo.png +0 -0
- package/DivMetroPerformance/assets/jrbm.png +0 -0
- package/DivMetroPerformance/assets/line_left.png +0 -0
- package/DivMetroPerformance/assets/line_mid.png +0 -0
- package/DivMetroPerformance/assets/line_right.png +0 -0
- package/DivMetroPerformance/assets/loading.png +0 -0
- package/DivMetroPerformance/assets/logo.png +0 -0
- package/DivMetroPerformance/assets/mcjx.png +0 -0
- package/DivMetroPerformance/assets/tao.png +0 -0
- package/DivMetroPerformance/assets/tmall.png +0 -0
- package/DivMetroPerformance/border.png +0 -0
- package/DivMetroPerformance/components/ContentItem.vue +385 -0
- package/DivMetroPerformance/components/MyTab.vue +129 -0
- package/DivMetroPerformance/data.js +124 -0
- package/DivMetroPerformance/utils/GridItem.vue +28 -0
- package/DivMetroPerformance/utils/GridPlate.vue +85 -0
- package/FilterDemo/AnimatePic.vue +3 -3
- package/FilterDemo/App.vue +3 -3
- package/FlipCard/App.vue +2 -2
- package/FlipCard/FlipCard.vue +2 -2
- package/GridDemo/Item.vue +13 -13
- package/HashHistory/App.vue +0 -1
- package/HashHistory/components/Item.vue +2 -2
- package/HashHistory/views/MainPage.vue +1 -1
- package/HashHistory/views/SubPage.vue +2 -2
- package/ImpactStop/App.vue +9 -11
- package/Input/InputPanel.vue +2 -4
- package/LongImage/App.vue +2 -2
- package/LongImage/Button.vue +1 -1
- package/LongImage/ButtonItem.vue +1 -1
- package/LongText/App.vue +3 -3
- package/LongText/Button.vue +1 -1
- package/LongText/ButtonItem.vue +1 -1
- package/LongText/LongTextScroll.vue +4 -4
- package/Marquee/longText.js +0 -2
- package/MaskClip/App.vue +4 -4
- package/MediaDemo/App.vue +127 -0
- package/MediaDemo/assets/audio-poster.png +0 -0
- package/MediaDemo/components/Button.vue +69 -0
- package/MediaDemo/components/Controllor.vue +279 -0
- package/MediaDemo/components/StatusBar.vue +100 -0
- package/MediaDemo/components/frames/AudioFrame.vue +39 -0
- package/MediaDemo/components/frames/AudioPoster.vue +48 -0
- package/MediaDemo/components/frames/MediaFrame.vue +153 -0
- package/MediaDemo/components/frames/VideoFrame.vue +39 -0
- package/MetroWidgetDemos/Advanced/ButtonItem.vue +4 -4
- package/MetroWidgetDemos/Advanced/widgets/Item.vue +5 -5
- package/MetroWidgetDemos/Advanced/widgets/WidgetItem.vue +2 -2
- package/MetroWidgetDemos/Advanced/widgets/Widgets.vue +57 -56
- package/MetroWidgetDemos/Item.vue +4 -5
- package/MetroWidgetDemos/PerformanceTest/App.vue +3 -3
- package/MetroWidgetDemos/PerformanceTest/components/ContentItem.vue +26 -26
- package/MetroWidgetDemos/PerformanceTest/components/MyTab.vue +15 -15
- package/MetroWidgetDemos/PingPong/AppPage.vue +2 -2
- package/MetroWidgetDemos/PingPong/TabItem.vue +2 -2
- package/MetroWidgetDemos/PingPong/ViewSwiper.vue +9 -9
- package/MetroWidgetDemos/Simple/RelativeTemplate.vue +2 -2
- package/MetroWidgetDemos/WidgetItem.vue +2 -2
- package/NinePatchDemo/App.vue +3 -3
- package/NinePatchDemo/Item.vue +5 -5
- package/Preload/App.vue +5 -5
- package/Preload/Item.vue +1 -1
- package/QrcodeDemo/App.vue +3 -3
- package/ScaleDownNeon/App.vue +9 -9
- package/SoundPool/App.vue +6 -9
- package/SprayView/App.vue +22 -22
- package/SpriteImage/App.vue +4 -4
- package/Swiper/App.vue +2 -8
- package/TextBox/App.vue +1 -2
- package/TextBox/RenderCenter.vue +16 -16
- package/TextBox/RenderLeft.vue +16 -16
- package/TextBox/RenderOneLine.vue +12 -12
- package/TextBox/RenderRight.vue +16 -16
- package/TextShadowDemo/App.vue +4 -4
- package/TextureAnimation/App.vue +1 -17
- package/TextureAnimation/App2.vue +3 -3
- package/TextureSize/App.vue +8 -8
- package/ThrowMoveDemo/AccelerateDemo.vue +4 -4
- package/ThrowMoveDemo/LRParabolicDemo.vue +4 -4
- package/ThrowMoveDemo/TargetDemo.vue +4 -4
- package/ThrowMoveDemo/UDParabolicDemo.vue +4 -4
- package/TouchSample/App.vue +2 -2
- package/TouchSample/Item.vue +2 -2
- package/TouchSample/MetroWidgetHorizontal.vue +3 -3
- package/TouchSample/MetroWidgetVertical.vue +3 -3
- package/TouchSample/TouchContainerHorizontal.vue +2 -2
- package/TouchSample/TouchContainerVertical.vue +2 -2
- package/TransitPage/App.vue +1 -1
- package/VideoDemo/App.vue +4 -4
- package/VideoDemo/components/Button.vue +1 -1
- package/VideoDemo/components/Controllor.vue +2 -2
- package/VideoDemo/components/VideoFrame.vue +1 -1
- package/VisibleSensorDemo/App.vue +7 -7
- package/assets/bmpDemo.bmp +0 -0
- package/assets/jpegDemo.jpeg +0 -0
- package/assets/pngDemo.png +0 -0
- package/assets/pngNoAlphaDemo.png +0 -0
- package/assets/webpDemo.webp +0 -0
- package/package.json +6 -1
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import { panelData } from './PanelData';
|
|
3
|
+
import Panel from '../utils/Panel.vue';
|
|
4
|
+
|
|
5
|
+
export default {
|
|
6
|
+
components: {
|
|
7
|
+
Panel
|
|
8
|
+
},
|
|
9
|
+
setup() {
|
|
10
|
+
return {
|
|
11
|
+
panelData,
|
|
12
|
+
};
|
|
13
|
+
},
|
|
14
|
+
}
|
|
15
|
+
</script>
|
|
16
|
+
|
|
17
|
+
<template>
|
|
18
|
+
<div>
|
|
19
|
+
<div class="root">
|
|
20
|
+
<Panel :style="{top:10, left:10, width:1230, height:640}"
|
|
21
|
+
:panelData=panelData :sideline=true />
|
|
22
|
+
</div>
|
|
23
|
+
</div>
|
|
24
|
+
</template>
|
|
25
|
+
|
|
26
|
+
<style scoped>
|
|
27
|
+
.root {
|
|
28
|
+
top: 10; left: 10;
|
|
29
|
+
width: 1250; height: 670;
|
|
30
|
+
background-color: rgba(200, 200, 200, 1)
|
|
31
|
+
}
|
|
32
|
+
</style>
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import ScssComments from './components/scss-group1/ScssComments.vue';
|
|
2
|
+
import ScssOperations from './components/scss-group1/ScssOperations.vue';
|
|
3
|
+
import ScssVariables from './components/scss-group1/ScssVariables.vue';
|
|
4
|
+
import ScssConditionals from './components/scss-group1/ScssConditionals.vue';
|
|
5
|
+
import ScssIteration from './components/scss-group2/ScssIteration.vue';
|
|
6
|
+
import ScssMethods from './components/scss-group2/ScssMethods.vue';
|
|
7
|
+
import ScssExtends from './components/scss-group3/ScssExtends.vue';
|
|
8
|
+
import ScssNesting from './components/scss-group3/ScssNesting.vue';
|
|
9
|
+
import ScssMixins from './components/scss-group4/ScssMixins.vue';
|
|
10
|
+
import ScssMaps from './components/scss-group4/ScssMaps.vue';
|
|
11
|
+
import ScssKeyframes from './components/scss-group4/ScssKeyframes.vue';
|
|
12
|
+
import ScssImporting from './components/scss-group5/ScssImporting.vue';
|
|
13
|
+
|
|
14
|
+
const titleData = [
|
|
15
|
+
'Scss 注释、运算符、变量、条件',
|
|
16
|
+
'Scss 迭代、方法',
|
|
17
|
+
'Scss 继承、嵌套',
|
|
18
|
+
'Scss 混入、映射、关键帧',
|
|
19
|
+
'Scss 导入',
|
|
20
|
+
];
|
|
21
|
+
|
|
22
|
+
const contentListData = [
|
|
23
|
+
[
|
|
24
|
+
{ title: "注释- //, /**/", obj: ScssComments },
|
|
25
|
+
{ title: "运算符- [ +,-,*,/,... ]", obj: ScssOperations },
|
|
26
|
+
{ title: "变量- $var, .a{$var}", obj: ScssVariables, zoom: 1 },
|
|
27
|
+
{ title: "条件- @if{}, @else if{}, @else{}", obj: ScssConditionals },
|
|
28
|
+
],
|
|
29
|
+
[
|
|
30
|
+
{ title: "迭代- @for, @each", obj: ScssIteration },
|
|
31
|
+
{ title: "方法- @function name(var)", obj: ScssMethods, zoom: 3 },
|
|
32
|
+
],
|
|
33
|
+
[
|
|
34
|
+
{ title: "继承- @extend", obj: ScssExtends },
|
|
35
|
+
{ title: "嵌套- .a{.b{}}, font:{}, text:{}", obj: ScssNesting, zoom: 3 },
|
|
36
|
+
],
|
|
37
|
+
[
|
|
38
|
+
{ title: "混入- @mixin name(var), @include", obj: ScssMixins},
|
|
39
|
+
{ title: "映射- $name:{key:value}, map-get()", obj: ScssMaps},
|
|
40
|
+
{ title: "关键帧- @keyframes", obj: ScssKeyframes},
|
|
41
|
+
],
|
|
42
|
+
[
|
|
43
|
+
{ title: "导入- @import", obj: ScssImporting, zoom: 2 },
|
|
44
|
+
{ title: undefined, obj: undefined, zoom: 0 },
|
|
45
|
+
],
|
|
46
|
+
];
|
|
47
|
+
|
|
48
|
+
export const panelData = {
|
|
49
|
+
title: titleData,
|
|
50
|
+
contentList: contentListData
|
|
51
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
export default {
|
|
3
|
+
}
|
|
4
|
+
</script>
|
|
5
|
+
|
|
6
|
+
<template>
|
|
7
|
+
<div>
|
|
8
|
+
<div class="scss-comments">
|
|
9
|
+
{{'// scss 单行注释\n'
|
|
10
|
+
+ '/* scss 多行注释 */\n'
|
|
11
|
+
+ '.scss-comments {\n'
|
|
12
|
+
+ ' // scss 单行注释\n'
|
|
13
|
+
+ ' /* scss 多行注释 */\n'
|
|
14
|
+
+ ' color: #00FF00;\n'
|
|
15
|
+
+ '}'}}
|
|
16
|
+
</div>
|
|
17
|
+
</div>
|
|
18
|
+
</template>
|
|
19
|
+
|
|
20
|
+
<style scoped lang="scss">
|
|
21
|
+
// scss 单行注释
|
|
22
|
+
/* scss 多行注释 */
|
|
23
|
+
.scss-comments {
|
|
24
|
+
// scss 单行注释
|
|
25
|
+
/* scss 多行注释 */
|
|
26
|
+
color: #00FF00;
|
|
27
|
+
font-size: 14;
|
|
28
|
+
|
|
29
|
+
left: 10;
|
|
30
|
+
top: 3;
|
|
31
|
+
width: 230;
|
|
32
|
+
height: 130;
|
|
33
|
+
}
|
|
34
|
+
</style>
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
export default {
|
|
3
|
+
}
|
|
4
|
+
</script>
|
|
5
|
+
|
|
6
|
+
<template>
|
|
7
|
+
<div>
|
|
8
|
+
<div class="scss-conditional">
|
|
9
|
+
{{'$show-green: false;\n'
|
|
10
|
+
+ '.scss-conditional {\n'
|
|
11
|
+
+ ' @if $show-green {\n'
|
|
12
|
+
+ ' color: #00FF00;\n'
|
|
13
|
+
+ ' } @else {\n'
|
|
14
|
+
+ ' color: #FF0000;\n'
|
|
15
|
+
+ ' }\n'
|
|
16
|
+
+ '}\n'}}
|
|
17
|
+
</div>
|
|
18
|
+
</div>
|
|
19
|
+
</template>
|
|
20
|
+
|
|
21
|
+
<style scoped lang="scss">
|
|
22
|
+
$show-green: false;
|
|
23
|
+
.scss-conditional {
|
|
24
|
+
@if $show-green {
|
|
25
|
+
color: #00FF00;
|
|
26
|
+
} @else {
|
|
27
|
+
color: #FF0000;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
font-size: 14;
|
|
31
|
+
left: 10;
|
|
32
|
+
top: 0;
|
|
33
|
+
width: 220;
|
|
34
|
+
height: 140;
|
|
35
|
+
}
|
|
36
|
+
</style>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
export default {
|
|
3
|
+
}
|
|
4
|
+
</script>
|
|
5
|
+
|
|
6
|
+
<template>
|
|
7
|
+
<div>
|
|
8
|
+
<div class="scss-op">
|
|
9
|
+
{{'not, +, -, /\n'
|
|
10
|
+
+ '*, /, %\n'
|
|
11
|
+
+ '+, -\n'
|
|
12
|
+
+ '>, >=, <, <=\n'
|
|
13
|
+
+ '==, !=\n'
|
|
14
|
+
+ 'and, or\n'
|
|
15
|
+
+ '=\n'}}
|
|
16
|
+
</div>
|
|
17
|
+
</div>
|
|
18
|
+
</template>
|
|
19
|
+
|
|
20
|
+
<style scoped lang="scss">
|
|
21
|
+
.scss-op {
|
|
22
|
+
color: #00FF00;
|
|
23
|
+
font-size: 20 - 6;
|
|
24
|
+
|
|
25
|
+
left: 10;
|
|
26
|
+
top: 3;
|
|
27
|
+
width: 230;
|
|
28
|
+
height: 280;
|
|
29
|
+
}
|
|
30
|
+
</style>
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
export default {
|
|
3
|
+
}
|
|
4
|
+
</script>
|
|
5
|
+
|
|
6
|
+
<template>
|
|
7
|
+
<div>
|
|
8
|
+
<div class="scss-var-general">
|
|
9
|
+
{{'$my-color: #00FF00; // 一般变量\n'
|
|
10
|
+
+ '.scss-var-general {\n'
|
|
11
|
+
+ ' color: $my-color;\n'
|
|
12
|
+
+ '}'}}
|
|
13
|
+
</div>
|
|
14
|
+
<div class="scss-var-enclosing">
|
|
15
|
+
{{'.scss-var-enclosing {\n'
|
|
16
|
+
+ ' $my-color: #0000FF; // 局部变量\n'
|
|
17
|
+
+ ' color: $my-color;\n'
|
|
18
|
+
+ '}'}}
|
|
19
|
+
</div>
|
|
20
|
+
</div>
|
|
21
|
+
</template>
|
|
22
|
+
|
|
23
|
+
<style scoped lang="scss">
|
|
24
|
+
$my-color: #00FF00; // 一般变量
|
|
25
|
+
.scss-var-general {
|
|
26
|
+
color: $my-color;
|
|
27
|
+
|
|
28
|
+
font-size: 14;
|
|
29
|
+
left: 10;
|
|
30
|
+
top: 0;
|
|
31
|
+
width: 220;
|
|
32
|
+
height: 140;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
$my-color: #00FF00;
|
|
36
|
+
.scss-var-enclosing {
|
|
37
|
+
// 只在 .scss-enclosing 里有效,局部作用域
|
|
38
|
+
$my-color: #FF0000; // 局部变量
|
|
39
|
+
color: $my-color;
|
|
40
|
+
|
|
41
|
+
font-size: 14;
|
|
42
|
+
left: 10;
|
|
43
|
+
top: 68;
|
|
44
|
+
width: 220;
|
|
45
|
+
height: 140;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
</style>
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
export default {
|
|
3
|
+
}
|
|
4
|
+
</script>
|
|
5
|
+
|
|
6
|
+
<template>
|
|
7
|
+
<div>
|
|
8
|
+
<div class="scss-iteration">
|
|
9
|
+
{{'$size: 4;\n'
|
|
10
|
+
+ '@for $num from 1 through 4 {\n'
|
|
11
|
+
+ ' $size : $size + $num\n'
|
|
12
|
+
+ '}\n'
|
|
13
|
+
+ '\n'
|
|
14
|
+
+ '.scss-iteration {\n'
|
|
15
|
+
+ ' font-size: $size;\n'
|
|
16
|
+
+ '}'}}
|
|
17
|
+
</div>
|
|
18
|
+
</div>
|
|
19
|
+
</template>
|
|
20
|
+
|
|
21
|
+
<style scoped lang="scss">
|
|
22
|
+
$size: 4;
|
|
23
|
+
@for $num from 1 through 4 {
|
|
24
|
+
$size : $size + $num
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.scss-iteration {
|
|
28
|
+
font-size: $size;
|
|
29
|
+
|
|
30
|
+
color: #00FF00;
|
|
31
|
+
left: 10;
|
|
32
|
+
top: 3;
|
|
33
|
+
width: 230;
|
|
34
|
+
height: 140;
|
|
35
|
+
}
|
|
36
|
+
</style>
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
export default {
|
|
3
|
+
}
|
|
4
|
+
</script>
|
|
5
|
+
|
|
6
|
+
<template>
|
|
7
|
+
<div>
|
|
8
|
+
<div class="scss-method-general">
|
|
9
|
+
{{'@function getsize($zoom) { //一般调用\n'
|
|
10
|
+
+ ' @return 2 * $zoom\n'
|
|
11
|
+
+ '}\n'
|
|
12
|
+
+ '.scss-method-general {\n'
|
|
13
|
+
+ ' font-size: getsize(7);\n'
|
|
14
|
+
+ '}'}}
|
|
15
|
+
</div>
|
|
16
|
+
|
|
17
|
+
<div class="scss-method-named">
|
|
18
|
+
{{'@function getsize($zoom) { //具名参数\n'
|
|
19
|
+
+ ' @return 2 * $zoom\n'
|
|
20
|
+
+ '}\n'
|
|
21
|
+
+ '.scss-method-named {\n'
|
|
22
|
+
+ ' font-size: getsize($zoom: 7);\n'
|
|
23
|
+
+ '}'}}
|
|
24
|
+
</div>
|
|
25
|
+
|
|
26
|
+
<div class="scss-method-varargs">
|
|
27
|
+
{{'@function getsize($args...) { //不定参数\n'
|
|
28
|
+
+ ' $size: 2;\n'
|
|
29
|
+
+ ' @each $zoom in $args {\n'
|
|
30
|
+
+ ' $size: $size * $zoom;\n'
|
|
31
|
+
+ ' }\n'
|
|
32
|
+
+ ' @return $size\n'
|
|
33
|
+
+ '}\n'
|
|
34
|
+
+ '.scss-method-varargs {\n'
|
|
35
|
+
+ ' font-size: getsize(7, 1);\n'
|
|
36
|
+
+ '}'}}
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
39
|
+
</template>
|
|
40
|
+
|
|
41
|
+
<style scoped lang="scss">
|
|
42
|
+
@function getsize($zoom) { //一般调用
|
|
43
|
+
@return 2 * $zoom
|
|
44
|
+
}
|
|
45
|
+
.scss-method-general {
|
|
46
|
+
font-size: getsize(7);
|
|
47
|
+
|
|
48
|
+
color: #00FF00;
|
|
49
|
+
left: 10;
|
|
50
|
+
top: 10;
|
|
51
|
+
width: 240;
|
|
52
|
+
height: 140;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
@function getsize($zoom) { //具名参数
|
|
56
|
+
@return 2 * $zoom
|
|
57
|
+
}
|
|
58
|
+
.scss-method-named {
|
|
59
|
+
font-size: getsize($zoom: 7);
|
|
60
|
+
|
|
61
|
+
color: #00FF00;
|
|
62
|
+
left: 10;
|
|
63
|
+
top: 140;
|
|
64
|
+
width: 240;
|
|
65
|
+
height: 140;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
@function getsize($args...) { //不定参数
|
|
69
|
+
$size: 2;
|
|
70
|
+
@each $zoom in $args {
|
|
71
|
+
$size: $size * $zoom;
|
|
72
|
+
}
|
|
73
|
+
@return $size
|
|
74
|
+
}
|
|
75
|
+
.scss-method-varargs {
|
|
76
|
+
font-size: getsize(7, 1);
|
|
77
|
+
|
|
78
|
+
color: #00FF00;
|
|
79
|
+
left: 10;
|
|
80
|
+
top: 270;
|
|
81
|
+
width: 240;
|
|
82
|
+
height: 180;
|
|
83
|
+
}
|
|
84
|
+
</style>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
export default {
|
|
3
|
+
}
|
|
4
|
+
</script>
|
|
5
|
+
|
|
6
|
+
<template>
|
|
7
|
+
<div>
|
|
8
|
+
<div class="scss-extend">
|
|
9
|
+
{{'.scss-basic {\n'
|
|
10
|
+
+ ' color: #00FF00;\n'
|
|
11
|
+
+ '}\n'
|
|
12
|
+
+ '.scss-extend {\n'
|
|
13
|
+
+ ' @extend .scss-basic;\n'
|
|
14
|
+
+ ' font-size: 14;\n'
|
|
15
|
+
+ '}'}}
|
|
16
|
+
</div>
|
|
17
|
+
</div>
|
|
18
|
+
</template>
|
|
19
|
+
|
|
20
|
+
<style scoped lang='scss'>
|
|
21
|
+
.scss-basic {
|
|
22
|
+
color: #00FF00;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.scss-extend {
|
|
26
|
+
@extend .scss-basic;
|
|
27
|
+
font-size: 14;
|
|
28
|
+
|
|
29
|
+
left: 10;
|
|
30
|
+
top: 3;
|
|
31
|
+
width: 230;
|
|
32
|
+
height: 140;
|
|
33
|
+
}
|
|
34
|
+
</style>
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
export default {
|
|
3
|
+
}
|
|
4
|
+
</script>
|
|
5
|
+
|
|
6
|
+
<template>
|
|
7
|
+
<div class="scss-root">
|
|
8
|
+
<div class="scss-rule-nesting">
|
|
9
|
+
{{'.scss-root {\n'
|
|
10
|
+
+ ' color: #00FF00;\n'
|
|
11
|
+
+ ' .scss-rule-nesting { // 规则嵌套\n'
|
|
12
|
+
+ ' font-size: 14;\n'
|
|
13
|
+
+ ' }\n'
|
|
14
|
+
+ '}'}}
|
|
15
|
+
</div>
|
|
16
|
+
<div class="scss-prop-nesting">
|
|
17
|
+
{{'.scss-prop-nesting { // 属性嵌套\n'
|
|
18
|
+
+ ' font: {\n'
|
|
19
|
+
+ ' size: 14;\n'
|
|
20
|
+
+ ' weight: bold;\n'
|
|
21
|
+
+ ' }\n'
|
|
22
|
+
+ ' text: {\n'
|
|
23
|
+
+ ' align: left;\n'
|
|
24
|
+
+ ' }\n'
|
|
25
|
+
+ '}'}}
|
|
26
|
+
</div>
|
|
27
|
+
<div class="scss-root-parent-selector">
|
|
28
|
+
{{'.scss-root {\n'
|
|
29
|
+
+ ' color: #00FF00;\n'
|
|
30
|
+
+ ' &-parent-selector { // 父选择器\n'
|
|
31
|
+
+ ' font-size: 14;\n'
|
|
32
|
+
+ ' }\n'
|
|
33
|
+
+ '}'}}
|
|
34
|
+
</div>
|
|
35
|
+
</div>
|
|
36
|
+
</template>
|
|
37
|
+
|
|
38
|
+
<style scoped lang='scss'>
|
|
39
|
+
.scss-root {
|
|
40
|
+
color: #00FF00;
|
|
41
|
+
|
|
42
|
+
.scss-rule-nesting { // 规则嵌套
|
|
43
|
+
font-size: 14;
|
|
44
|
+
|
|
45
|
+
left: 10;
|
|
46
|
+
top: 3;
|
|
47
|
+
width: 230;
|
|
48
|
+
height: 140;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.scss-prop-nesting { // 属性嵌套
|
|
52
|
+
font: {
|
|
53
|
+
size: 14;
|
|
54
|
+
weight: bold;
|
|
55
|
+
}
|
|
56
|
+
text: {
|
|
57
|
+
align: left;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
left: 10;
|
|
61
|
+
top: 120;
|
|
62
|
+
width: 230;
|
|
63
|
+
height: 140;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
&-parent-selector { // 父选择器
|
|
67
|
+
font-size: 14;
|
|
68
|
+
|
|
69
|
+
left: 10;
|
|
70
|
+
top: 280;
|
|
71
|
+
width: 230;
|
|
72
|
+
height: 140;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
</style>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
export default {
|
|
3
|
+
}
|
|
4
|
+
</script>
|
|
5
|
+
|
|
6
|
+
<template>
|
|
7
|
+
<div>
|
|
8
|
+
<div class="scss-keyframes" :style="{ animation: 'scale-anim 3s infinite linear' }">
|
|
9
|
+
{{'@keyframes scale-anim {\n'
|
|
10
|
+
+ ' from {\n'
|
|
11
|
+
+ ' transform scale3d(1.0, 1.0, 1)\n'
|
|
12
|
+
+ ' }\n'
|
|
13
|
+
+ ' to {\n'
|
|
14
|
+
+ ' transform scale3d(0.8, 0.8, 1)\n'
|
|
15
|
+
+ ' }\n'
|
|
16
|
+
+ '}'}}
|
|
17
|
+
</div>
|
|
18
|
+
</div>
|
|
19
|
+
</template>
|
|
20
|
+
|
|
21
|
+
<style scoped lang="scss">
|
|
22
|
+
@keyframes scale-anim {
|
|
23
|
+
from {
|
|
24
|
+
transform: scale3d(1.0, 1.0, 1);
|
|
25
|
+
}
|
|
26
|
+
to {
|
|
27
|
+
transform: scale3d(0.8, 0.8, 1);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.scss-keyframes {
|
|
32
|
+
color: #00FF00;
|
|
33
|
+
font-size: 14;
|
|
34
|
+
|
|
35
|
+
left: 10;
|
|
36
|
+
top: 0;
|
|
37
|
+
width: 230;
|
|
38
|
+
height: 140;
|
|
39
|
+
}
|
|
40
|
+
</style>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
export default {
|
|
3
|
+
}
|
|
4
|
+
</script>
|
|
5
|
+
|
|
6
|
+
<template>
|
|
7
|
+
<div>
|
|
8
|
+
<div class="scss-map">
|
|
9
|
+
{{'$font-sizes: (\n'
|
|
10
|
+
+ ' small: 10, medium: 14, large: 18,\n'
|
|
11
|
+
+ ');\n'
|
|
12
|
+
+ '.scss-map {\n'
|
|
13
|
+
+ ' font-size: map-get($font-sizes,\n'
|
|
14
|
+
+ ' medium);\n'
|
|
15
|
+
+ '}'}}
|
|
16
|
+
</div>
|
|
17
|
+
</div>
|
|
18
|
+
</template>
|
|
19
|
+
|
|
20
|
+
<style scoped lang='scss'>
|
|
21
|
+
$font-sizes: (
|
|
22
|
+
small: 10, medium: 14, large: 18,
|
|
23
|
+
);
|
|
24
|
+
|
|
25
|
+
.scss-map {
|
|
26
|
+
font-size: map-get($font-sizes,
|
|
27
|
+
medium);
|
|
28
|
+
|
|
29
|
+
color: #00FF00;
|
|
30
|
+
left: 10;
|
|
31
|
+
top: 3;
|
|
32
|
+
width: 230;
|
|
33
|
+
height: 140;
|
|
34
|
+
}
|
|
35
|
+
</style>
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
export default {
|
|
3
|
+
}
|
|
4
|
+
</script>
|
|
5
|
+
|
|
6
|
+
<template>
|
|
7
|
+
<div>
|
|
8
|
+
<div class="scss-mixin">
|
|
9
|
+
{{'@mixin font($size) {\n'
|
|
10
|
+
+ ' font-size: $size;\n'
|
|
11
|
+
+ '}\n'
|
|
12
|
+
+ '.scss-mixin {\n'
|
|
13
|
+
+ ' @include font(14);\n'
|
|
14
|
+
+ '}'}}
|
|
15
|
+
</div>
|
|
16
|
+
</div>
|
|
17
|
+
</template>
|
|
18
|
+
|
|
19
|
+
<style scoped lang='scss'>
|
|
20
|
+
@mixin font($size) {
|
|
21
|
+
font-size: $size;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.scss-mixin {
|
|
25
|
+
@include font(14);
|
|
26
|
+
|
|
27
|
+
color: #00FF00;
|
|
28
|
+
left: 10;
|
|
29
|
+
top: 0;
|
|
30
|
+
width: 230;
|
|
31
|
+
height: 140;
|
|
32
|
+
}
|
|
33
|
+
</style>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
export default {
|
|
3
|
+
}
|
|
4
|
+
</script>
|
|
5
|
+
|
|
6
|
+
<template>
|
|
7
|
+
<div>
|
|
8
|
+
<div class="scss-bounds scss-imported">
|
|
9
|
+
{{'ScssImportFile.vue\n'
|
|
10
|
+
+ '\n'
|
|
11
|
+
+ '<style scoped lang=\'scss\'>\n'
|
|
12
|
+
+ '@import \'./TextSettings\';\n'
|
|
13
|
+
+ '</style>\n'
|
|
14
|
+
+ '\n'
|
|
15
|
+
+ '=================\n'
|
|
16
|
+
+ 'TextSettings.scss\n'
|
|
17
|
+
+ '\n'
|
|
18
|
+
+ '.scss-imported {\n'
|
|
19
|
+
+ ' color: #00FF00;\n'
|
|
20
|
+
+ ' font-size: 14;\n'
|
|
21
|
+
+ '}'}}
|
|
22
|
+
</div>
|
|
23
|
+
</div>
|
|
24
|
+
</template>
|
|
25
|
+
|
|
26
|
+
<style scoped lang='scss'>
|
|
27
|
+
@import './TextSettings';
|
|
28
|
+
.scss-bounds {
|
|
29
|
+
left: 10;
|
|
30
|
+
top: 0;
|
|
31
|
+
width: 230;
|
|
32
|
+
height: 280;
|
|
33
|
+
}
|
|
34
|
+
</style>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import { panelData } from './PanelData';
|
|
3
|
+
import Panel from '../utils/Panel.vue';
|
|
4
|
+
|
|
5
|
+
export default {
|
|
6
|
+
components: {
|
|
7
|
+
Panel
|
|
8
|
+
},
|
|
9
|
+
setup() {
|
|
10
|
+
return {
|
|
11
|
+
panelData,
|
|
12
|
+
};
|
|
13
|
+
},
|
|
14
|
+
}
|
|
15
|
+
</script>
|
|
16
|
+
|
|
17
|
+
<template>
|
|
18
|
+
<div>
|
|
19
|
+
<div class="root">
|
|
20
|
+
<Panel :style="{top:10, left:10, width:1230, height:640}"
|
|
21
|
+
:panelData=panelData :sideline=true />
|
|
22
|
+
</div>
|
|
23
|
+
</div>
|
|
24
|
+
</template>
|
|
25
|
+
|
|
26
|
+
<style scoped>
|
|
27
|
+
.root {
|
|
28
|
+
top: 10; left: 10;
|
|
29
|
+
width: 1250; height: 670;
|
|
30
|
+
background-color: rgba(200, 200, 200, 1)
|
|
31
|
+
}
|
|
32
|
+
</style>
|