• canvas_21 矩阵变换


    <template>
        <view class="zcvs">
    
            <view class="zcvs-item">
                <view>
                    <canvas canvas-id="cvs" id="cvs" style=" 400px; height: 400px;border: 1px solid #007AFF;" />
                </view>
    
            </view>
    
        </view>
    </template>
    
    <script>
        export default {
            data() {
                return {};
            },
            onReady() {
                this.drawCvs();
            },
            methods: {
                drawCvs() {
                    const ctx = uni.createCanvasContext('cvs');
                    ctx.setFillStyle("#007AFF");
    
                    ctx.beginPath();
                    // transform() 方法的行为相对于由 rotate(), scale(), translate()
                    ctx.fillStyle = "yellow";
                    ctx.fillRect(100, 0, 150, 100);
    
                    ctx.transform(1, 0.5, -0.5, 1, 30, 10);
                    ctx.fillStyle = "red";
                    ctx.fillRect(100, 0, 150, 100);
    
                    ctx.transform(1, 0.5, -0.5, 1, 30, 10);
                    ctx.fillStyle = "blue";
                    ctx.fillRect(100, 0, 150, 100);
    
                    ctx.draw();
                },
            }
        }
    </script>
    
    <style lang="scss" scoped></style>
  • 相关阅读:
    设计模式-观察者模式
    获取ubuntu中软件包的有用地址
    vim 简单命令
    adb logcat 日志过滤
    shell编程——
    shell编程——参数传递
    Chromecast
    linux 广播
    【转】Git命令解说
    linux 多播
  • 原文地址:https://www.cnblogs.com/luwei0915/p/15265858.html
Copyright © 2020-2023  润新知