Tracking

$35,150

Artist: Yongmin Huang

Category:

描述

Tracking. 30”x36” Oxidized paper, plaster and mixed media on wood. Hand crafted wood panel and frame.

评价

目前还没有评价

成为第一个“Tracking” 的评价者

您的邮箱地址不会被公开。 必填项已用 * 标注

相关产品

// 智能分类链接映射 - 根据关键词匹配 document.addEventListener('DOMContentLoaded', function() { → // 智能关键词映射规则 → const categoryRules = [ → → { keywords: ['painting', 'painter', 'canvas', 'oil', 'acrylic'], slug: 'painting' }, → → { keywords: ['sculpture', 'sculpt', 'statue', '3d', 'bronze'], slug: 'sculpture' }, → → { keywords: ['photography', 'photo', 'camera', 'digital', 'print'], slug: 'photography' }, → → { keywords: ['drawing', 'sketch', 'pencil', 'charcoal', 'ink'], slug: 'drawing' }, → → { keywords: ['print', 'lithograph', 'etching', 'screen'], slug: 'print' }, → → { keywords: ['art', 'contemporary', 'modern', 'abstract', 'portrait', 'landscape'], slug: 'painting' } // 默认 → ]; → → const blocks = document.querySelectorAll('.home .wp-block-column'); → → blocks.forEach(function(block, index) { → → const heading = block.querySelector('h2, h3, h4'); → → if (!heading) return; → → → → const title = heading.textContent.trim().toLowerCase(); → → → → let matchedSlug = 'painting'; → → for (const rule of categoryRules) { → → → if (rule.keywords.some(keyword = title.includes(keyword))) { → → → → matchedSlug = rule.slug; → → → → break; → → → } → → } → → → → let link = block.querySelector('a'); → → if (!link) { → → → link = document.createElement('a'); → → → link.className = 'category-link'; → → → link.style.cssText = 'display: inline-block; margin-top: 20px; padding: 12px 30px; background-color: #3498db; color: white; text-decoration: none; border-radius: 4px; font-weight: 600; transition: all 0.3s ease;'; → → → block.appendChild(link); → → } → → → → link.href = 'https://uzdianzishuceshi.online/product-category/' + matchedSlug + '/'; → → link.textContent = 'Browse ' + heading.textContent.trim(); → → → → link.addEventListener('mouseenter', function() { → → → this.style.backgroundColor = '#2980b9'; → → → this.style.transform = 'translateY(-2px)'; → → }); → → → → link.addEventListener('mouseleave', function() { → → → this.style.backgroundColor = '#3498db'; → → → this.style.transform = 'translateY(0)'; → → }); → }); → → console.log('✅ Category navigation links added successfully'); });