୨୧ Hané: my contact for direct messages is @feisechan on discord୨୧ General pricing will be listed in Guidelines, previous commissions & art examples are listed in Gallery

୨୧ バナナよりいちごが好き
甘酸っぱい感じが


୨୧ New Message: sorry in advance, i'm super slow at responding but please don't be afraid to message me hehe

甘い甘い ものがたり 夢なら覚めないで 毎日祈るどうか気づいて またここで

swaneiric ✿ comissions


୨୧ [06/08/23] I can use product art & will have partial ownership of product created.୨୧ This contract applies to the artist further called Seller and person or institution further called Buyer purchasing from Seller a work of art further called Product.By ordering Product from the Seller the Buyer agrees to the following terms and conditions:USAGE OF BUYER
୨୧ products cannot be used for commercial use without additional fees.
୨୧ buyer does not hold the right to use the product in any blockchain-related technology, including NFTs, cryptocurrency, or future inventions in the space.
୨୧ buyer does not hold the right to use the product in AI-related technology.

୨୧ Clean sketch 25 USD
୨୧ Chibi Renders: 20 USD
୨୧ Colored Sketch: 30~50 USD


୨୧ payment & refunding:
01 all products are paid up front (minimum 50%)
02 all products must be paid in USD either through cashapp, venmo, paypal. conversions are responsible by the buyer03 buyer is entitled to refund on orders with no progress after 2 WEEKS & if not completed within ONE & ½ MONTHS04 seller can cancel and fully refund any order at any time.

୨୧ product delivery & revisions:
01 product will be delivered digitally with HD quality through email or google drive.
02 buyer has right to 2 complete revisions in the sketch phase (several minor detail revisions allowed)03 buyer has right to minor edits of the product after completion (i.e. color shifts of piece, eye color)

swaneiric ✿ comissions


More examples can be provided through request.

src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"> // Plugin code (function($) { /** Polyfills and prerequisites **/ // requestAnimationFrame Polyfill var lastTime = 0; var vendors = ['webkit', 'o', 'ms', 'moz', '']; var vendorCount = vendors.length; for (var x = 0; x < vendorCount && !window.requestAnimationFrame; ++x) { window.requestAnimationFrame = window[vendors[x] + 'RequestAnimationFrame']; window.cancelAnimationFrame = window[vendors[x] + 'CancelAnimationFrame'] || window[vendors[x] + 'CancelRequestAnimationFrame']; } if (!window.requestAnimationFrame) { window.requestAnimationFrame = function(callback) { var currTime = new Date().getTime(); var timeToCall = Math.max(0, 16 - (currTime - lastTime)); var id = window.setTimeout(function() { callback(currTime + timeToCall); }, timeToCall); lastTime = currTime + timeToCall; return id; }; } if (!window.cancelAnimationFrame) { window.cancelAnimationFrame = function(id) { clearTimeout(id); }; } // Prefixed event check $.fn.prefixedEvent = function(type, callback) { for (var x = 0; x < vendorCount; ++x) { if (!vendors[x]) { type = type.toLowerCase(); } el = (this instanceof jQuery ? this[0] : this); el.addEventListener(vendors[x] + type, callback, false); } return this; }; // Test if element is in viewport function elementInViewport(el) { if (el instanceof jQuery) { el = el[0]; } var rect = el.getBoundingClientRect(); return ( rect.top >= 0 && rect.left >= 0 && rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) && rect.right <= (window.innerWidth || document.documentElement.clientWidth) ); } // Random array element function randomArrayElem(arr) { return arr[Math.floor(Math.random() * arr.length)]; } // Random integer function randomInt(min, max) { return Math.floor(Math.random() * (max - min + 1)) + min; } /** Actual plugin code **/ $.fn.sakura = function(event, options) { // Target element var target = this.selector == "" ? $('body') : this; // Defaults for the option object, which gets extended below var defaults = { blowAnimations: ['blow-soft-left', 'blow-medium-left', 'blow-soft-right', 'blow-medium-right'], className: 'sakura', fallSpeed: 1, maxSize: 14, minSize: 10, newOn: 300, swayAnimations: ['sway-0', 'sway-1', 'sway-2', 'sway-3', 'sway-4', 'sway-5', 'sway-6', 'sway-7', 'sway-8'] }; var options = $.extend({}, defaults, options); // Default or start event if (typeof event === 'undefined' || event === 'start') { // Set the overflow-x CSS property on the target element to prevent horizontal scrollbars target.css({ 'overflow-x': 'hidden' }); // Function that inserts new petals into the document var petalCreator = function() { if (target.data('sakura-anim-id')) { setTimeout(function() { requestAnimationFrame(petalCreator); }, options.newOn); } // Get one random animation of each type and randomize fall time of the petals var blowAnimation = randomArrayElem(options.blowAnimations); var swayAnimation = randomArrayElem(options.swayAnimations); var fallTime = ((document.documentElement.clientHeight * 0.007) + Math.round(Math.random() * 5)) * options.fallSpeed; // Build animation var animations = 'fall ' + fallTime + 's linear 0s 1' + ', ' + blowAnimation + ' ' + (((fallTime > 30 ? fallTime : 30) - 20) + randomInt(0, 20)) + 's linear 0s infinite' + ', ' + swayAnimation + ' ' + randomInt(2, 4) + 's linear 0s infinite'; // Create petal and randomize size var petal = $('
'); var height = randomInt(options.minSize, options.maxSize); var width = height - Math.floor(randomInt(0, options.minSize) / 3); // Apply Event Listener to remove petals that reach the bottom of the page petal.prefixedEvent('AnimationEnd', function() { if (!elementInViewport(this)) { $(this).remove(); } }) // Apply Event Listener to remove petals that finish their horizontal float animation .prefixedEvent('AnimationIteration', function(ev) { if ( ( $.inArray(ev.animationName, options.blowAnimations) != -1 || $.inArray(ev.animationName, options.swayAnimations) != -1 ) && !elementInViewport(this) ) { $(this).remove(); } }) .css({ '-webkit-animation': animations, animation: animations, 'border-radius': randomInt(options.maxSize, (options.maxSize + Math.floor(Math.random() * 10))) + 'px ' + randomInt(1, Math.floor(width / 4)) + 'px', height: height + 'px', left: (Math.random() * document.documentElement.clientWidth - 100) + 'px', 'margin-top': (-(Math.floor(Math.random() * 20) + 15)) + 'px', width: width + 'px' }); target.append(petal); }; // Finally: Start adding petals target.data('sakura-anim-id', requestAnimationFrame(petalCreator)); } // Stop event, which stops the animation loop and removes all current blossoms else if (event === 'stop') { // Cancel animation var animId = target.data('sakura-anim-id'); if (animId) { cancelAnimationFrame(animId); target.data('sakura-anim-id', null); } // Remove all current blossoms setTimeout(function() { $('.' + options.className).remove(); }, (options.newOn + 50)); } }; }(jQuery)); $(document).ready(function() { $('body').sakura(); });
Cute Polka Dotted Pink Bow Tie Ribbon