Skip to content

Instantly share code, notes, and snippets.

@Neru-K
Neru-K / samplecode1.html
Created November 26, 2022 07:16
rotate()を使ったサンプルコード1
<div class="container">
<div class="square">
<div class="innercircle"></div>
<span><img src="bee-gd1c39d62d_1280.png" /></span>
</div>
</div>
<style>
.container {
position: relative;
@Neru-K
Neru-K / main.dart
Created May 3, 2021 13:43 — forked from collinjackson/main.dart
PageView example with dots indicator
// Copyright 2017, the Flutter project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'dart:math';
import 'package:flutter/material.dart';
void main() {
runApp(new MyApp());
}